try a different approach
msbuild / build (push) Failing after 7s Details

This commit is contained in:
Greg Gauthier 2024-02-27 12:17:59 +00:00
parent dc2e5621a5
commit ff7aa682f6
1 changed files with 5 additions and 5 deletions

View File

@ -16,14 +16,14 @@ jobs:
- name: Where Am I
shell: bash
working-directory: ${{runner.workspace}}
run: whoami && pwd && ls -l && env
run: pwd && ls -l && env
- name: Start Web
shell: bash
working-directory: ${{runner.workspace}}/MyWebApp
run: nohub dotnet run &
working-directory: ${{runner.workspace}}
run: cd MyWebApp && nohub dotnet run &
- name: Run Playwright Tests
shell: bash
working-directory: ${{runner.workspace}}/PlaywriteTests
run: dotnet test
working-directory: ${{runner.workspace}}
run: cd PlawwrightTests && dotnet test