-
Notifications
You must be signed in to change notification settings - Fork 153
42 lines (42 loc) · 1.19 KB
/
playwright.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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 }})'