forked from FooSoft/yomichan
-
Notifications
You must be signed in to change notification settings - Fork 114
202 lines (169 loc) · 4.14 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
name: CI
permissions:
contents: read
on:
push:
branches: [master]
pull_request:
merge_group:
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: "package.json"
- name: Install dependencies
run: npm ci
- name: Build third-party libraries
run: npm run build:libs
- name: Upload workspace
uses: actions/upload-artifact@v4
with:
name: workspace
path: .
js:
needs: setup
name: JavaScript
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test JavaScript
run: npm run test:js
ts-main:
needs: setup
name: TypeScript (main)
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test TypeScript (main)
run: npm run test:ts:main
ts-dev:
needs: setup
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test TypeScript (dev)
run: npm run test:ts:dev
ts-test:
needs: setup
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test TypeScript (test)
run: npm run test:ts:test
ts-bench:
needs: setup
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test TypeScript (bench)
run: npm run test:ts:bench
css:
needs: setup
name: CSS
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test CSS
run: npm run test:css
html:
needs: setup
name: HTML
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test HTML
run: npm run test:html
markdown:
needs: setup
name: Markdown
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test Markdown
run: npm run test:md
json:
needs: setup
name: JSON
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Test JSON
run: npm run test:json
unit-tests:
needs: setup
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Run unit tests
run: npm run test:unit
- name: Run unit tests (options)
run: npm run test:unit:options
test-build:
needs: setup
name: Test Build
runs-on: ubuntu-latest
steps:
- name: Download workspace
uses: actions/download-artifact@v4
with:
name: workspace
- name: Build Legal
run: npm run license-report:html
- name: Build
run: npm run build
- name: Validate manifest.json of the extension
uses: cardinalby/schema-validator-action@2166123eb256fa40baef7e22ab1379708425efc7 # v3.1.1
with:
file: ext/manifest.json
schema: "https://json.schemastore.org/chrome-manifest.json"
fixSchemas: true
bench:
needs: setup
name: Benchmarks
runs-on: ubuntu-latest
steps:
- name: Run Benchmarks
uses: CodSpeedHQ/action@513a19673a831f139e8717bf45ead67e47f00044 # v3.2
with:
token: ${{ secrets.CODSPEED_TOKEN }}
run: npm run bench