add powershell to the dependency stack
msbuild / build (push) Has been cancelled Details

This commit is contained in:
Greg Gauthier 2024-02-27 13:07:32 +00:00
parent 9743678015
commit 08aeebd18a
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ jobs:
- name: Where Am I
shell: bash
working-directory: ${{runner.workspace}}
run: pwd && ls -l && dotnet --info && pwsh --version
run: export PATH="$PATH:/root/.dotnet/tools" && pwd && ls -l && dotnet --info && pwsh --version
- name: Start Web
shell: bash
@ -34,4 +34,4 @@ jobs:
- name: Run Playwright Tests
shell: bash
working-directory: ${{runner.workspace}}
run: pwsh bin/Debug/netX/playwright.ps1 install && cd PlaywrightTests && dotnet test
run: export PATH="$PATH:/root/.dotnet/tools" && pwsh bin/Debug/netX/playwright.ps1 install && cd PlaywrightTests && dotnet test