feat: zap page #2346
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: Playwright Tests | |
on: | |
- pull_request | |
- workflow_dispatch | |
permissions: | |
checks: write | |
pull-requests: write | |
contents: write | |
jobs: | |
test: | |
name: Test (${{ matrix.shard }} / ${{ strategy.job-total}}) | |
continue-on-error: true | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
shard: [ 1, 2, 3, 4 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: yarn install | |
- name: Install xvfb server | |
run: sudo apt-get install xvfb | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps chromium | |
- name: Run Playwright tests | |
env: | |
PLAYWRIGHT_JSON_OUTPUT_NAME: report-${{ matrix.shard }}.json | |
run: | | |
yarn build:cache:ci & | |
yarn run test:ci:e2e \ | |
--shard ${{ matrix.shard }}/${{ strategy.job-total }} \ | |
--reporter=json | |
- uses: daun/playwright-report-summary@v3 | |
if: always() | |
with: | |
report-file: report-${{ matrix.shard }}.json | |
report-tag: ${{ matrix.shard }} | |
comment-title: 'Test results (${{ matrix.shard }}/${{ strategy.job-total }})' |