-
Notifications
You must be signed in to change notification settings - Fork 3
337 lines (304 loc) · 9.43 KB
/
node.js.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
name: Build & Test
on:
push:
schedule:
- cron: '0 0 * * */2' # at 0:00 every two days
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
- name: Cache pnpm modules
uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
pnpm-
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Find version
run: |
npm run env | grep npm_package_version >> $GITHUB_ENV
- run: |
echo Workflow triggered by event ${{ github.event_name }}
- name: Build
run: npm run build:all # does not run tests
env:
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
- name: Archive extension
uses: actions/upload-artifact@v4
with:
name: enhancer_for_nebula-${{ env.npm_package_version }}
path: |
extension-dist/
if-no-files-found: error
- name: Build V3
run: npm run clean && npm run build:all -- --configV3 true # does not run tests
env:
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
- name: Archive extension V3
uses: actions/upload-artifact@v4
with:
name: enhancer_for_nebula_v3-${{ env.npm_package_version }}
path: |
extension-dist/
if-no-files-found: error
test:
name: Test
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
- name: Cache pnpm modules
uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
pnpm-
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Find version
run: |
npm run env | grep npm_package_version >> $GITHUB_ENV
- name: Get build files
uses: actions/download-artifact@v4
with:
name: enhancer_for_nebula-${{ env.npm_package_version }}
path: |
extension-dist/
# for headfull chrome
- name: Install xvfb
run: sudo apt-get install xvfb
- name: Clear jest cache
run: npx jest --clear-cache
- name: Run all tests
run: xvfb-run --auto-servernum npm run test -- --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
NEBULA_PASS: ${{ secrets.NEBULA_PASS }}
NEBULA_USER: ${{ secrets.NEBULA_USER }}
- name: Clear jest cache
run: npx jest --clear-cache
- name: Run tests on beta
run: xvfb-run --auto-servernum npm run test:ee -- --ci --passWithNoTests
continue-on-error: ${{ github.event_name != 'schedule' }}
id: betatest
env:
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
NEBULA_PASS: ${{ secrets.NEBULA_PASS }}
NEBULA_USER: ${{ secrets.NEBULA_USER }}
NEBULA_BASE: https://beta.nebula.tv
- name: Emit warning if beta test failed
if: ${{ steps.betatest.outcome == 'failure' }}
run: echo "::warning::Beta tests failed"
test_v3:
name: Test V3
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
- name: Cache pnpm modules
uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
pnpm-
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Find version
run: |
npm run env | grep npm_package_version >> $GITHUB_ENV
- name: Get build files
uses: actions/download-artifact@v4
with:
name: enhancer_for_nebula_v3-${{ env.npm_package_version }}
path: |
extension-dist/
# for headfull chrome
- name: Install xvfb
run: sudo apt-get install xvfb
- name: Clear jest cache
run: npx jest --clear-cache
- name: Run all tests
run: xvfb-run --auto-servernum npm run test -- --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
NEBULA_PASS: ${{ secrets.NEBULA_PASS }}
NEBULA_USER: ${{ secrets.NEBULA_USER }}
release:
name: Release
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
- name: Cache pnpm modules
uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
pnpm-
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Find version
run: |
npm run env | grep npm_package_version >> $GITHUB_ENV
- name: Get build files
uses: actions/download-artifact@v4
with:
name: enhancer_for_nebula-${{ env.npm_package_version }}
path: |
extension-dist/
- name: Package extension
run: npx web-ext build
- name: Push to release
uses: softprops/action-gh-release@v1
with:
files: |
web-ext-artifacts/enhancer_for_nebula-${{ env.npm_package_version }}.zip
fail_on_unmatched_files: true
draft: true
name: Version ${{ env.npm_package_version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get build files
uses: actions/download-artifact@v4
with:
name: enhancer_for_nebula_v3-${{ env.npm_package_version }}
path: |
extension-dist/
- name: Package extension
run: npx web-ext build --filename '{name}-v3-{version}.zip'
- name: Push to release
uses: softprops/action-gh-release@v1
with:
files: |
web-ext-artifacts/enhancer_for_nebula-v3-${{ env.npm_package_version }}.zip
fail_on_unmatched_files: true
draft: true
name: Version ${{ env.npm_package_version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
- name: Cache pnpm modules
uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
pnpm-
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Find version
run: |
npm run env | grep npm_package_version >> $GITHUB_ENV
- name: Install grep and find
run: sudo apt-get install grep findutils
- name: Create non-minified files
run: npm run build:all -- --environment NO_MINIFY
env:
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
- name: Verify no debug artifacts
run: chmod +x .github/verify-artifacts.sh && .github/verify-artifacts.sh
shell: bash
- name: Run addon linter on non-minified
run: npm run lint:ext
- name: Get build files
uses: actions/download-artifact@v4
with:
name: enhancer_for_nebula-${{ env.npm_package_version }}
path: |
extension-dist/
- name: Verify directory structure
run: chmod +x .github/verify-dirs.sh && .github/verify-dirs.sh
shell: bash
- name: Run linters
run: npm run lint
current:
name: Build & Test for current version
runs-on: ubuntu-latest
if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
steps:
- name: Install curl, jq, xvfb
run: sudo apt-get install curl jq xvfb
- name: Fetch latest tag name
run: echo "tag=$(curl -s "https://api.github.com/repos/${{ github.repository }}/releases/latest" | jq -r .tag_name)" >> $GITHUB_OUTPUT
id: tagfetch
- run: |
echo Checking out tag ${{ steps.tagfetch.outputs.tag }}
- uses: actions/checkout@v4
with:
ref: ${{ steps.tagfetch.outputs.tag }}
- name: Setup Node.js environment
uses: actions/setup-node@v4
- name: Cache pnpm modules
uses: actions/cache@v4
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
pnpm-
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: true
- name: Build
run: npm run build:all # does not run tests
env:
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
- uses: actions/checkout@v4
with:
clean: false
- run: pnpm install --frozen-lockfile
- name: Run all tests
run: xvfb-run --auto-servernum npm run test -- --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
YT_API_KEY: ${{ secrets.YOUTUBE_KEY }}
NEBULA_PASS: ${{ secrets.NEBULA_PASS }}
NEBULA_USER: ${{ secrets.NEBULA_USER }}