-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (68 loc) · 1.99 KB
/
e2e.yml
File metadata and controls
83 lines (68 loc) · 1.99 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: E2E
# Runs the Playwright end-to-end suite against a freshly built docs site.
# Uses chromium only (single browser binary for speed).
on:
push:
branches: [main]
paths:
- "src/**"
- "scripts/**"
- "tests/e2e/**"
- "playwright.config.ts"
- "colors_and_type.css"
- "ui_kits/**"
- "package.json"
- "pnpm-lock.yaml"
- ".github/workflows/e2e.yml"
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: e2e-${{ github.ref }}
cancel-in-progress: true
jobs:
e2e:
name: Playwright (chromium)
runs-on: ubuntu-latest
timeout-minutes: 12
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v5
- uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Resolve playwright version
id: pw
run: |
v=$(node -p "require('./node_modules/@playwright/test/package.json').version")
echo "version=$v" >> "$GITHUB_OUTPUT"
- name: Cache playwright browsers
id: pw-cache
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ steps.pw.outputs.version }}
- name: Install browsers
if: steps.pw-cache.outputs.cache-hit != 'true'
run: pnpm exec playwright install --with-deps chromium
- name: Install browser system deps (cache hit only)
if: steps.pw-cache.outputs.cache-hit == 'true'
run: pnpm exec playwright install-deps chromium
- name: Build site
run: pnpm run build:site
- name: Run tests
run: pnpm test:e2e
- name: Upload report
if: failure()
uses: actions/upload-artifact@v7
with:
name: playwright-report-${{ github.sha }}
path: |
playwright-report/
test-results/
retention-days: 7