Skip to content

Commit

Permalink
update dotnet version used for integration tests, use variable substi…
Browse files Browse the repository at this point in the history
…tution to find playwright install path
  • Loading branch information
hahn-kev committed Nov 23, 2023
1 parent e07253e commit 4ae9dff
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-dotnet@v3
with:
dotnet-version: '7'
dotnet-version: '8.x'
- uses: MatteoH2O1999/setup-python@v1.5.0
id: python
if: ${{ matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'ubuntu-latest' && !env.act }}
with:
python-version: '2.7.18'
cache-build: true
Expand All @@ -48,7 +48,8 @@ jobs:
- name: Dotnet build
run: dotnet build
- name: Playwright setup
run: pwsh backend/Testing/bin/Debug/net7.0/playwright.ps1 install
working-directory: backend/Testing
run: pwsh $(dotnet msbuild --getProperty:OutputPath)playwright.ps1 install
- name: Integration tests
env:
TEST_SERVER_HOSTNAME: ${{ inputs.test-domain }}
Expand Down

0 comments on commit 4ae9dff

Please sign in to comment.