-
Notifications
You must be signed in to change notification settings - Fork 2
380 lines (313 loc) · 11.7 KB
/
sdk-e2e.yml
File metadata and controls
380 lines (313 loc) · 11.7 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
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: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install CLI dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Install test-site dependencies
working-directory: ./test-site
run: npm ci
- name: Get Playwright version
id: playwright-version
run: echo "version=$(npx playwright --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@v4
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: npx playwright install firefox --with-deps
- name: Run E2E tests (TDD mode)
working-directory: ./test-site
run: node ../bin/vizzly.js tdd run "npm test"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./test-site
run: node ../bin/vizzly.js run "npm 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: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install CLI dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Install Vitest client dependencies
working-directory: ./clients/vitest
run: npm install
- name: Get Playwright version
working-directory: ./clients/vitest
id: playwright-version
run: echo "version=$(npx playwright --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@v4
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: npx playwright install chromium --with-deps
- name: Run E2E tests (TDD mode)
working-directory: ./clients/vitest
run: ../../bin/vizzly.js tdd run "npm run test:e2e"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/vitest
run: ../../bin/vizzly.js run "npm 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: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install CLI dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Install Storybook client dependencies
working-directory: ./clients/storybook
run: npm install
- name: Get Playwright version
working-directory: ./clients/storybook
id: playwright-version
run: echo "version=$(npx playwright --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@v4
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/storybook
run: npx playwright install chromium --with-deps
- name: Run E2E tests (TDD mode)
working-directory: ./clients/storybook
run: ../../bin/vizzly.js tdd run "npm run test:e2e"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/storybook
run: ../../bin/vizzly.js run "npm run test:e2e"
env:
CI: true
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 }}
# Static-Site SDK
static-site:
name: Static-Site SDK
runs-on: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install CLI dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Install Static-Site client dependencies
working-directory: ./clients/static-site
run: npm install
- name: Get Playwright version
working-directory: ./clients/static-site
id: playwright-version
run: echo "version=$(npx playwright --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@v4
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/static-site
run: npx playwright install chromium --with-deps
- name: Run E2E tests (TDD mode)
working-directory: ./clients/static-site
run: ../../bin/vizzly.js tdd run "npm run test:e2e"
env:
CI: true
- name: Run E2E tests (Cloud mode)
working-directory: ./clients/static-site
run: ../../bin/vizzly.js run "npm 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 }}
# Ember SDK
ember:
name: Ember SDK
runs-on: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install CLI dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Install Ember client dependencies
working-directory: ./clients/ember
run: npm install
- name: Get Playwright version
working-directory: ./clients/ember
id: playwright-version
run: echo "version=$(npx playwright --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" >> $GITHUB_OUTPUT
- name: Cache Playwright browsers
uses: actions/cache@v4
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/ember
run: npx playwright install chromium --with-deps
- name: Build Ember test app
working-directory: ./clients/ember/test-app
run: |
npm install
npm run build -- --mode development
- name: Run E2E tests (TDD mode)
working-directory: ./clients/ember/test-app
run: ../../../bin/vizzly.js tdd run "npx 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 "npx 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: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 8
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- name: Install CLI dependencies
run: npm ci
- name: Build CLI
run: npm run build
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- name: Install Ruby dependencies
working-directory: ./clients/ruby
run: |
gem install bundler
bundle install
- name: Run integration tests (TDD mode)
working-directory: ./clients/ruby
run: ../../bin/vizzly.js tdd run "VIZZLY_INTEGRATION=1 ruby -I lib test/integration_test.rb"
env:
CI: true
- name: Run integration tests (Cloud mode)
working-directory: ./clients/ruby
run: ../../bin/vizzly.js run "VIZZLY_INTEGRATION=1 ruby -I lib test/integration_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 }}
# Status check for branch protection
check:
name: E2E Status
runs-on: ubuntu-latest
needs: [core-js, vitest, storybook, static-site, ember, ruby]
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
echo "All SDK E2E tests passed"