fix(xunit): support netstandard2.0 #1160
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Harness | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
pull_request: | |
branches: | |
- main | |
- release-* | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install prerequisites and download drivers | |
shell: bash | |
run: ./build.sh --download-driver | |
- name: Building | |
run: dotnet build ./src | |
- name: Installing Browsers and dependencies | |
run: pwsh src/Playwright/bin/Debug/netstandard2.0/playwright.ps1 install --with-deps | |
- name: Install test-runner | |
run: npm ci | |
working-directory: src/Playwright.TestingHarnessTest | |
- name: Running tests | |
run: xvfb-run npx playwright test | |
working-directory: src/Playwright.TestingHarnessTest |