Skip to content

Bump the backend-dependencies group with 2 updates #4

Bump the backend-dependencies group with 2 updates

Bump the backend-dependencies group with 2 updates #4

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
frontend:
name: Frontend build
runs-on: ubuntu-latest
defaults:
run:
working-directory: Frontend/salt-frontend
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: Frontend/salt-frontend/package-lock.json
- run: npm ci
- run: npm run build
backend:
name: Backend build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- run: dotnet restore Backend/SaltTask.fsproj
- run: dotnet build Backend/SaltTask.fsproj --configuration Release --no-restore