-
Notifications
You must be signed in to change notification settings - Fork 2
349 lines (287 loc) · 9.49 KB
/
sdk-unit.yml
File metadata and controls
349 lines (287 loc) · 9.49 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
name: SDK Unit Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
# Detect which SDKs have changes
changes:
runs-on: ubuntu-latest
outputs:
ruby: ${{ steps.filter.outputs.ruby }}
storybook: ${{ steps.filter.outputs.storybook }}
static-site: ${{ steps.filter.outputs.static-site }}
vitest: ${{ steps.filter.outputs.vitest }}
swift: ${{ steps.filter.outputs.swift }}
ember: ${{ steps.filter.outputs.ember }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
ruby:
- 'clients/ruby/**'
- '.github/workflows/sdk-unit.yml'
storybook:
- 'clients/storybook/**'
- '.github/workflows/sdk-unit.yml'
static-site:
- 'clients/static-site/**'
- '.github/workflows/sdk-unit.yml'
vitest:
- 'clients/vitest/**'
- '.github/workflows/sdk-unit.yml'
swift:
- 'clients/swift/**'
- '.github/workflows/sdk-unit.yml'
ember:
- 'clients/ember/**'
- '.github/workflows/sdk-unit.yml'
# Ruby SDK - runs on multiple Ruby versions
ruby:
name: Ruby SDK
runs-on: ubuntu-latest
timeout-minutes: 8
needs: changes
if: needs.changes.outputs.ruby == 'true'
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- 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 Ruby dependencies
working-directory: ./clients/ruby
run: |
gem install bundler
bundle install
- name: Run RuboCop
working-directory: ./clients/ruby
run: bundle exec rubocop
- name: Run Ruby unit tests
working-directory: ./clients/ruby
run: ruby -Ilib:test test/vizzly_test.rb
# Storybook SDK - runs on multiple Node versions
storybook:
name: Storybook SDK
runs-on: ubuntu-latest
timeout-minutes: 8
needs: changes
if: needs.changes.outputs.storybook == 'true'
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- 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: Run linter
working-directory: ./clients/storybook
run: npm run lint
- name: Run tests
working-directory: ./clients/storybook
run: npm test
env:
CI: true
- name: Build package
working-directory: ./clients/storybook
run: npm run build
# Static-Site SDK - runs on multiple Node versions
static-site:
name: Static-Site SDK
runs-on: ubuntu-latest
timeout-minutes: 8
needs: changes
if: needs.changes.outputs.static-site == 'true'
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- 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: Run linter
working-directory: ./clients/static-site
run: npm run lint
- name: Run tests
working-directory: ./clients/static-site
run: npm test
env:
CI: true
- name: Build package
working-directory: ./clients/static-site
run: npm run build
# Vitest SDK - runs on multiple Node versions
vitest:
name: Vitest SDK
runs-on: ubuntu-latest
timeout-minutes: 8
needs: changes
if: needs.changes.outputs.vitest == 'true'
strategy:
matrix:
node-version: [22, 24]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- 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 installed 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-browsers-${{ 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 Vitest client linter
working-directory: ./clients/vitest
run: npm run lint
- name: Run Vitest client unit tests
working-directory: ./clients/vitest
run: npm run test:unit
env:
CI: true
# Swift SDK - runs on multiple Xcode versions
swift:
name: Swift SDK
runs-on: macos-latest
timeout-minutes: 8
needs: changes
if: needs.changes.outputs.swift == 'true'
strategy:
matrix:
xcode-version: ['16.2', '16.4']
steps:
- uses: actions/checkout@v4
- name: Select Xcode version
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode-version }}.app
- name: Build Swift package
working-directory: ./clients/swift
run: swift build
- name: Run Swift tests
working-directory: ./clients/swift
run: swift test
# Ember SDK - runs unit and integration tests
ember:
name: Ember SDK
runs-on: ubuntu-latest
timeout-minutes: 8
needs: changes
if: needs.changes.outputs.ember == 'true'
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
- 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 installed 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-browsers-${{ 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: Run linter
working-directory: ./clients/ember
run: npm run lint
- name: Run unit tests
working-directory: ./clients/ember
run: npm test
env:
CI: true
# Status check for branch protection
check:
name: SDK Unit Status
runs-on: ubuntu-latest
needs: [changes, ruby, storybook, static-site, vitest, swift, ember]
if: always()
steps:
- name: Check SDK unit tests
run: |
# Only check jobs that were supposed to run
if [[ "${{ needs.changes.outputs.ruby }}" == "true" && "${{ needs.ruby.result }}" == "failure" ]]; then
echo "Ruby SDK tests failed"
exit 1
fi
if [[ "${{ needs.changes.outputs.storybook }}" == "true" && "${{ needs.storybook.result }}" == "failure" ]]; then
echo "Storybook SDK tests failed"
exit 1
fi
if [[ "${{ needs.changes.outputs.static-site }}" == "true" && "${{ needs.static-site.result }}" == "failure" ]]; then
echo "Static-Site SDK tests failed"
exit 1
fi
if [[ "${{ needs.changes.outputs.vitest }}" == "true" && "${{ needs.vitest.result }}" == "failure" ]]; then
echo "Vitest SDK tests failed"
exit 1
fi
if [[ "${{ needs.changes.outputs.swift }}" == "true" && "${{ needs.swift.result }}" == "failure" ]]; then
echo "Swift SDK tests failed"
exit 1
fi
if [[ "${{ needs.changes.outputs.ember }}" == "true" && "${{ needs.ember.result }}" == "failure" ]]; then
echo "Ember SDK tests failed"
exit 1
fi
echo "All SDK unit tests passed (or skipped)"