tests: bring back test runner bots as they were (#12423)

This commit is contained in:
Dmitry Gozman 2022-02-28 22:19:15 -08:00 committed by GitHub
parent a6fecb5d4b
commit a5f2dc0d7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 53 deletions

View file

@ -1,53 +0,0 @@
name: "Test Runner"
on:
push:
branches:
- main
- release-*
paths:
- ".github/workflows/test_test_runner.yml"
- "tests/playwright-test/**/*"
- "packages/playwright-test/**/*"
- "package.json"
pull_request:
branches:
- main
- release-*
paths:
- ".github/workflows/test_test_runner.yml"
- "tests/playwright-test/**/*"
- "packages/playwright-test/**/*"
- "package.json"
workflow_dispatch:
env:
# Force terminal colors. @see https://www.npmjs.com/package/colors
FORCE_COLOR: 1
FLAKINESS_CONNECTION_STRING: ${{ secrets.FLAKINESS_CONNECTION_STRING }}
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'
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
if: always()

View file

@ -49,6 +49,35 @@ 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'
- run: ./utils/upload_flakiness_dashboard.sh ./test-results/report.json
if: always()
test_html_report:
name: HTML Report
runs-on: ubuntu-latest