try to fix hang, and add webdriver installs
msbuild / build (push) Failing after 19s Details

This commit is contained in:
Greg Gauthier 2024-02-27 12:43:31 +00:00
parent 29b7e8a1d4
commit 555d81bc35
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ jobs:
- name: Start Web
shell: bash
working-directory: ${{runner.workspace}}
run: cd MyWebApp && nohup dotnet run &
run: cd MyWebApp;nohup dotnet run &;disown
- name: Run Playwright Tests
shell: bash
working-directory: ${{runner.workspace}}
run: cd PlaywrightTests && dotnet test
run: pwsh bin/Debug/netX/playwright.ps1 install && cd PlaywrightTests && dotnet test