tests: bring back test runner bots as they were (#12423)
This commit is contained in:
parent
a6fecb5d4b
commit
a5f2dc0d7e
53
.github/workflows/test_test_runner.yml
vendored
53
.github/workflows/test_test_runner.yml
vendored
|
|
@ -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()
|
||||
29
.github/workflows/tests_primary.yml
vendored
29
.github/workflows/tests_primary.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue