-
Notifications
You must be signed in to change notification settings - Fork 65
102 lines (84 loc) · 2.31 KB
/
Copy pathci.yml
File metadata and controls
102 lines (84 loc) · 2.31 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
name: CI
on:
push:
branches:
- 'main'
tags:
- 'v*'
paths-ignore:
- data/words.ljson
- data/words.idx
- CHANGELOG.md
pull_request:
env:
# Pin until Node 24.16.0's extract-zip/yauzl regression is fixed. It can
# leave WebdriverIO's ChromeDriver download partially extracted in CI:
# https://github.com/nodejs/node/issues/63487
NODE_VERSION: 24.15.0
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 11
- name: Setup node
uses: actions/setup-node@v7
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
# Check the build works. No need to run the build:edge target since it's
# almost identical to build:chrome
- name: Build
run: |-
pnpm install --frozen-lockfile
pnpm build:firefox
pnpm build:chrome
pnpm build:thunderbird
- name: Run tests
env:
CI: true
run: pnpm test
- name: Upload any failure artifacts
uses: actions/upload-artifact@v7
if: always()
with:
name: test-screenshots
path: '**/__screenshots__/**/*.png'
if-no-files-found: ignore
retention-days: 20
# Check packaging doesn't error. Again, no need to worry about the
# package:edge target.
- name: Package
run: |-
pnpm package:firefox
pnpm package:chrome
- name: Verify cosmos setup
run: pnpm cosmos-export
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install pnpm
uses: pnpm/action-setup@v6
with:
version: 11
- name: Setup node
uses: actions/setup-node@v7
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm oxlint --type-aware scripts src tests "*.{cjs,js,ts}"
- name: Check formatting
run: pnpm prettier --check _locales css scripts src tests "*.{js,json,md,ts}"
- name: knip
run: pnpm knip