fix: add working-directory: ./backend to dotnet steps — resolves MSB1003

This commit is contained in:
2026-04-27 20:30:53 -04:00
committed by dex-bot
parent e103166126
commit 3811c571b8

View File

@@ -20,12 +20,15 @@ jobs:
- name: Restore backend - name: Restore backend
run: dotnet restore run: dotnet restore
working-directory: ./backend
- name: Build backend - name: Build backend
run: dotnet build --no-restore --configuration Release run: dotnet build --no-restore --configuration Release
working-directory: ./backend
- name: Test backend - name: Test backend
run: dotnet test --no-build --configuration Release run: dotnet test --no-build --configuration Release
working-directory: ./backend
- name: Setup Node - name: Setup Node
uses: actions/setup-node@v4 uses: actions/setup-node@v4