-
Notifications
You must be signed in to change notification settings - Fork 438
120 lines (91 loc) · 2.97 KB
/
ci.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
name: Partytown CI
on: [push, pull_request]
jobs:
test-chromium:
name: Test Chromium (Ubuntu)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- uses: pnpm/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20.10.0
cache: 'pnpm'
registry-url: https://registry.npmjs.org/
- run: corepack enable
- name: Install NPM Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: npm run build
- name: Install Chromium Playwright
run: npx playwright install chromium && npx playwright install-deps chromium
- name: Run Chromium E2E Tests (Service Worker)
run: npm run test.chromium
- name: Run Chromium E2E Tests (Atomics)
run: npm run test.atomics
- name: Run Unit Tests
run: npm run test.unit
- name: Upload Chromium E2E Test Videos
uses: actions/[email protected]
if: always()
with:
name: Chromium E2E Test Videos
path: tests/videos
test-webkit:
name: Test WebKit (MacOS)
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/[email protected]
- uses: pnpm/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20.10.0
cache: 'pnpm'
registry-url: https://registry.npmjs.org/
- run: corepack enable
- name: Install NPM Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: npm run build
- name: Install WebKit Playwright
run: npx playwright install webkit && npx playwright install-deps webkit
- name: Run WebKit E2E Tests
run: npm run test.webkit
- name: Upload WebKit E2E Test Videos
uses: actions/[email protected]
if: always()
with:
name: WebKit E2E Test Videos Videos
path: tests/videos
benchmark-chromium:
name: Benchmark Chromium (Ubuntu)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- uses: pnpm/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: 20.10.0
cache: 'pnpm'
registry-url: https://registry.npmjs.org/
- run: corepack enable
- name: Install NPM Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: npm run build
- name: Install Chromium Playwright
run: npx playwright install chromium && npx playwright install-deps chromium
- name: Run Chromium Benchmark
run: npm run benchmark
- name: Upload Chromium Benchmark Screenshots
uses: actions/[email protected]
if: always()
with:
name: Chromium Benchmark Screenshots
path: tests/benchmarks/screenshots