devops: run test-runner tests on Node 16 (#12359)

This commit is contained in:
Max Schmitt 2022-02-25 19:13:45 +01:00 committed by GitHub
parent b47c95c20c
commit 8292fe8940
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 50 additions and 27 deletions

50
.github/workflows/test_test_runner.yml vendored Normal file
View File

@ -0,0 +1,50 @@
name: "Test Runner"
on:
push:
branches:
- main
- release-*
paths:
- ".github/workflows/test_test_runner.yml"
- "!browser_patches/**"
- "!docs/**"
- "tests/playwright-test/**/*"
- "packages/playwright-test/**/*"
- "package.json"
pull_request:
branches:
- main
- release-*
paths:
- ".github/workflows/test_test_runner.yml"
- "!browser_patches/**"
- "!docs/**"
- "tests/playwright-test/**/*"
- "packages/playwright-test/**/*"
- "package.json"
workflow_dispatch:
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12, 16]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node-version}}
- run: npm i -g npm@8.3
- run: npm ci
env:
DEBUG: pw:install
- run: npm run build
- run: npx playwright install --with-deps
- run: npm run ttest
if: matrix.os != 'ubuntu-latest'
- run: xvfb-run npm run ttest
if: matrix.os == 'ubuntu-latest'

View File

@ -49,33 +49,6 @@ jobs:
name: ${{ matrix.browser }}-${{ matrix.os }}-test-results
path: test-results
test_test_runner:
name: Test Runner
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12]
include:
- os: ubuntu-latest
node-version: 16
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node-version}}
- run: npm i -g npm@8.3
- run: npm ci
env:
DEBUG: pw:install
- run: npm run build
- run: npx playwright install --with-deps
- run: npm run ttest
if: matrix.os != 'ubuntu-latest'
- run: xvfb-run npm run ttest
if: matrix.os == 'ubuntu-latest'
test_html_report:
name: HTML Report
runs-on: ubuntu-latest