-
Notifications
You must be signed in to change notification settings - Fork 2
491 lines (403 loc) · 16.3 KB
/
sdk-e2e.yml
File metadata and controls
491 lines (403 loc) · 16.3 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
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
name: SDK E2E Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
# Core JS Client (test-site with Playwright)
core-js:
name: Core JS Client
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js 22.13.1
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '22.13.1'
- name: Install pnpm
run: |
npm install -g corepack@latest
corepack enable
corepack prepare pnpm@11.3.0 --activate
- name: Install CLI dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm run build
- name: Install test-site dependencies
working-directory: ./test-site
run: pnpm install --frozen-lockfile
- name: Get Playwright version
id: playwright-version
run: echo "version=$(pnpm exec playwright --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: playwright-${{ steps.playwright-version.outputs.version }}-firefox
- name: Install Playwright browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
working-directory: ./test-site
run: pnpm exec playwright install firefox --with-deps
- name: Run E2E tests (TDD mode)
working-directory: ./test-site
run: node ../bin/vizzly.js tdd run "pnpm test"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./test-site
run: node ../bin/vizzly.js run "pnpm test"
env:
CI: true
VIZZLY_TOKEN: ${{ secrets.VIZZLY_TOKEN }}
VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }}
VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
# Vitest SDK
vitest:
name: Vitest SDK
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js 22.13.1
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '22.13.1'
- name: Install pnpm
run: |
npm install -g corepack@latest
corepack enable
corepack prepare pnpm@11.3.0 --activate
- name: Install CLI dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm run build
- name: Install Vitest client dependencies
working-directory: ./clients/vitest
run: pnpm install --frozen-lockfile
- name: Get Playwright version
working-directory: ./clients/vitest
id: playwright-version
run: echo "version=$(pnpm exec playwright --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: playwright-${{ steps.playwright-version.outputs.version }}-chromium
- name: Install Playwright browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
working-directory: ./clients/vitest
run: pnpm exec playwright install chromium --with-deps
- name: Run E2E tests (TDD mode)
working-directory: ./clients/vitest
run: ../../bin/vizzly.js tdd run "pnpm run test:e2e"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/vitest
run: ../../bin/vizzly.js run "pnpm run test:e2e"
env:
CI: true
VIZZLY_TOKEN: ${{ secrets.VIZZLY_VITEST_CLIENT_TOKEN }}
VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }}
VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
# Storybook SDK
storybook:
name: Storybook SDK
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js 22.13.1
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '22.13.1'
- name: Install pnpm
run: |
npm install -g corepack@latest
corepack enable
corepack prepare pnpm@11.3.0 --activate
- name: Install CLI dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm run build
- name: Install Storybook client dependencies
working-directory: ./clients/storybook
run: pnpm install --frozen-lockfile
- name: Build Storybook client
working-directory: ./clients/storybook
run: pnpm run build
- name: Get Playwright version
working-directory: ./clients/storybook
id: playwright-version
run: echo "version=$(node -p "require('playwright-core/package.json').version")" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: playwright-${{ steps.playwright-version.outputs.version }}-storybook-chromium
- name: Install Playwright browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
working-directory: ./clients/storybook
run: pnpm exec playwright-core install chromium --with-deps
- name: Build example-storybook
working-directory: ./clients/storybook/example-storybook
run: pnpm install --frozen-lockfile && pnpm run build-storybook
- name: Run E2E tests (TDD mode)
working-directory: ./clients/storybook
run: ../../bin/vizzly.js tdd run "pnpm run test:e2e"
env:
CI: true
VIZZLY_LOG_LEVEL: debug
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/storybook
run: ../../bin/vizzly.js run "pnpm run test:e2e"
env:
CI: true
VIZZLY_LOG_LEVEL: debug
VIZZLY_TOKEN: ${{ secrets.VIZZLY_STORYBOOK_CLIENT_TOKEN }}
VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }}
VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
- name: Upload preview
if: success()
working-directory: ./clients/storybook
run: ../../bin/vizzly.js preview example-storybook/dist
env:
VIZZLY_TOKEN: ${{ secrets.VIZZLY_STORYBOOK_CLIENT_TOKEN }}
# Static-Site SDK
static-site:
name: Static-Site SDK
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js 22.13.1
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '22.13.1'
- name: Install pnpm
run: |
npm install -g corepack@latest
corepack enable
corepack prepare pnpm@11.3.0 --activate
- name: Install CLI dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm run build
- name: Install Static-Site client dependencies
working-directory: ./clients/static-site
run: pnpm install --frozen-lockfile
- name: Build Static-Site client
working-directory: ./clients/static-site
run: pnpm run build
- name: Get Playwright version
working-directory: ./clients/static-site
id: playwright-version
run: echo "version=$(node -p "require('playwright-core/package.json').version")" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: playwright-${{ steps.playwright-version.outputs.version }}-static-site-chromium
- name: Install Playwright browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
working-directory: ./clients/static-site
run: pnpm exec playwright-core install chromium --with-deps
- name: Run E2E tests (TDD mode)
working-directory: ./clients/static-site
run: ../../bin/vizzly.js tdd run "pnpm run test:e2e"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/static-site
run: ../../bin/vizzly.js run "pnpm run test:e2e"
env:
CI: true
VIZZLY_TOKEN: ${{ secrets.VIZZLY_STATIC_SITE_CLIENT_TOKEN }}
VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }}
VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
- name: Upload preview
working-directory: ./clients/static-site
run: ../../bin/vizzly.js preview ../../test-site
env:
VIZZLY_TOKEN: ${{ secrets.VIZZLY_STATIC_SITE_CLIENT_TOKEN }}
# Ember SDK
ember:
name: Ember SDK
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js 22.13.1
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '22.13.1'
- name: Install pnpm
run: |
npm install -g corepack@latest
corepack enable
corepack prepare pnpm@11.3.0 --activate
- name: Install CLI dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm run build
- name: Install Ember client dependencies
working-directory: ./clients/ember
run: pnpm install --frozen-lockfile
- name: Get Playwright version
working-directory: ./clients/ember
id: playwright-version
run: echo "version=$(pnpm exec playwright-core --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: playwright-${{ steps.playwright-version.outputs.version }}-ember-chromium-v3
- name: Install Playwright browsers
if: steps.playwright-cache.outputs.cache-hit != 'true'
working-directory: ./clients/ember
run: pnpm exec playwright-core install chromium --with-deps
- name: Build Ember test app
working-directory: ./clients/ember/test-app
run: |
pnpm install --frozen-lockfile
pnpm run build --mode development
- name: Run E2E tests (TDD mode)
working-directory: ./clients/ember/test-app
run: ../../../bin/vizzly.js tdd run "pnpm exec testem ci --file testem.cjs"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/ember/test-app
run: ../../../bin/vizzly.js run "pnpm exec testem ci --file testem.cjs"
env:
CI: true
VIZZLY_TOKEN: ${{ secrets.VIZZLY_EMBER_CLIENT_TOKEN }}
VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }}
VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
# Ruby SDK
ruby:
name: Ruby SDK
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js 22.13.1
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '22.13.1'
- name: Install pnpm
run: |
npm install -g corepack@latest
corepack enable
corepack prepare pnpm@11.3.0 --activate
- name: Install CLI dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm run build
- name: Set up Ruby
uses: ruby/setup-ruby@97ecb7b512899eb71ab1bf2310a624c6f1589ac6 # v1
with:
ruby-version: '3.3'
- name: Set up Chrome
uses: browser-actions/setup-chrome@086160e580d6e8c142ad5ba29009dcde677c6321 # v2
with:
chrome-version: stable
- name: Install Ruby dependencies
working-directory: ./clients/ruby
run: |
gem install bundler
bundle install
- name: Run E2E tests (TDD mode)
working-directory: ./clients/ruby
run: ../../bin/vizzly.js tdd run "VIZZLY_E2E=1 ruby -Ilib:test test/e2e_test.rb"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/ruby
run: ../../bin/vizzly.js run "VIZZLY_E2E=1 ruby -Ilib:test test/e2e_test.rb"
env:
CI: true
VIZZLY_TOKEN: ${{ secrets.VIZZLY_RUBY_CLIENT_TOKEN }}
VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }}
VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
# Swift SDK
swift:
name: Swift SDK
runs-on: macos-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js 22.13.1
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: '22.13.1'
- name: Install pnpm
run: |
npm install -g corepack@latest
corepack enable
corepack prepare pnpm@11.3.0 --activate
- name: Install CLI dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm run build
- name: Build Swift package
working-directory: ./clients/swift
run: swift build
- name: Run E2E tests (TDD mode)
working-directory: ./clients/swift
run: ../../bin/vizzly.js tdd run "VIZZLY_E2E=1 swift test --filter VizzlyE2ETests"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/swift
run: ../../bin/vizzly.js run "VIZZLY_E2E=1 swift test --filter VizzlyE2ETests"
env:
CI: true
VIZZLY_TOKEN: ${{ secrets.VIZZLY_SWIFT_CLIENT_TOKEN }}
VIZZLY_COMMIT_MESSAGE: ${{ github.event.pull_request.head.commit.message || github.event.head_commit.message }}
VIZZLY_COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.event.head_commit.id }}
# Status check for branch protection
check:
name: E2E Status
runs-on: ubuntu-latest
needs: [core-js, vitest, storybook, static-site, ember, ruby, swift]
if: always()
steps:
- name: Check all SDK E2E tests passed
run: |
if [[ "${{ needs.core-js.result }}" == "failure" ]]; then
echo "Core JS Client E2E tests failed"
exit 1
fi
if [[ "${{ needs.vitest.result }}" == "failure" ]]; then
echo "Vitest SDK E2E tests failed"
exit 1
fi
if [[ "${{ needs.storybook.result }}" == "failure" ]]; then
echo "Storybook SDK E2E tests failed"
exit 1
fi
if [[ "${{ needs.static-site.result }}" == "failure" ]]; then
echo "Static-Site SDK E2E tests failed"
exit 1
fi
if [[ "${{ needs.ember.result }}" == "failure" ]]; then
echo "Ember SDK E2E tests failed"
exit 1
fi
if [[ "${{ needs.ruby.result }}" == "failure" ]]; then
echo "Ruby SDK E2E tests failed"
exit 1
fi
if [[ "${{ needs.swift.result }}" == "failure" ]]; then
echo "Swift SDK E2E tests failed"
exit 1
fi
echo "All SDK E2E tests passed"