-
Notifications
You must be signed in to change notification settings - Fork 16
581 lines (473 loc) · 20.4 KB
/
check.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
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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
name: Check
on:
push: {branches: [master]}
pull_request:
merge_group:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
ruby_version: '3.0'
xcode_version: 'Xcode_15.2'
java_version: '11'
java_distribution: temurin
jobs:
cache-npm-linux:
name: Cache npm for Linux
runs-on: ubuntu-22.04
outputs:
cache-key: ${{ steps.node-cache.outputs.cache-primary-key }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Extract job definition
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
- uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ runner.os }}-node_modules-${{ hashFiles('.node-version', 'package-lock.json', '.github/job.yml') }}
- if: steps.node-cache.outputs.cache-hit != 'true'
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
cache: npm
- if: steps.node-cache.outputs.cache-hit != 'true'
run: npm ci
- uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
if: steps.node-cache.outputs.cache-hit != 'true'
with:
path: node_modules/
key: ${{ steps.node-cache.outputs.cache-primary-key }}
cache-npm-macos:
name: Cache npm for macOS
runs-on: macos-14
outputs:
cache-key: ${{ steps.node-cache.outputs.cache-primary-key }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Extract job definition
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
- uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ runner.os }}-node_modules-${{ hashFiles('.node-version', 'package-lock.json', '.github/job.yml') }}
- if: steps.node-cache.outputs.cache-hit != 'true'
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
cache: npm
- if: steps.node-cache.outputs.cache-hit != 'true'
run: npm ci
- uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
if: steps.node-cache.outputs.cache-hit != 'true'
with:
path: node_modules/
key: ${{ steps.node-cache.outputs.cache-primary-key }}
cache-bundler-macos:
name: Cache bundler for macOS
runs-on: macos-14
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.ruby_version }}
bundler-cache: true
cache-cocoapods:
name: iOS Cocoapods
needs: [cache-npm-macos, cache-bundler-macos]
runs-on: macos-14
outputs:
cache-key: ${{ steps.cocoapods-cache.outputs.cache-primary-key }}
steps:
- run: sudo xcode-select -s /Applications/${{ env.xcode_version }}.app
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Extract job definition
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
- name: Restore Cocoapods cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: cocoapods-cache
with:
path: ios/Pods
key: ${{ runner.os }}-cocoapods-ruby@${{ env.ruby_version }}-xcode@${{ env.xcode_version }}-${{ hashFiles('**/Podfile', '**/Podfile.lock', 'package-lock.json', '.github/job.yml') }}
- if: steps.cocoapods-cache.outputs.cache-hit != 'true'
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- if: steps.cocoapods-cache.outputs.cache-hit != 'true'
uses: ruby/setup-ruby@v1
env:
BUNDLE_FROZEN: "true"
with:
ruby-version: ${{ env.ruby_version }}
bundler-cache: true
- name: Restore node_modules cache
if: steps.cocoapods-cache.outputs.cache-hit != 'true'
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-macos.outputs.cache-key }}
- if: steps.cocoapods-cache.outputs.cache-hit != 'true' && steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- if: steps.cocoapods-cache.outputs.cache-hit != 'true'
run: bundle exec pod install --deployment
working-directory: ./ios
- name: Save Cocoapods cache
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
if: steps.cocoapods-cache.outputs.cache-hit != 'true'
with:
path: ios/Pods
key: ${{ steps.cocoapods-cache.outputs.cache-primary-key }}
prettier:
name: Prettier
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-linux.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- run: npm run pretty -- --no-write --list-different
eslint:
name: ESLint
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-linux.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- run: npm run lint
jest:
name: Jest
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-linux.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- name: Run tests
run: npm run test -- --coverage
- name: Upload coverage
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3
tsc:
name: TypeScript
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-linux.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- run: npx tsc
data:
name: Data
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-linux.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- run: npm run validate-data
- run: npm run bundle-data
ios-bundle:
name: iOS Bundle
needs: [cache-npm-macos]
runs-on: macos-14
outputs:
cache-key: ${{ steps.jsbundle-cache.outputs.cache-primary-key }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Extract job definition
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-macos.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- name: Load the cached jsbundle
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: jsbundle-cache
with:
path: |
ios/AllAboutOlaf/main.jsbundle
ios/AllAboutOlaf/main.jsbundle.map
ios/assets/
key: ${{ runner.os }}-jsbundle-${{ hashFiles('.node-version', 'package.json', 'package-lock.json', '.github/job.yml', 'tsconfig.json', 'babel.config.js', 'index.js', 'data/**', 'images/**', 'modules/**.ts', 'modules/**.tsx', 'source/**.ts', 'source/**.tsx') }}
- name: Generate jsbundle
if: steps.jsbundle-cache.outputs.cache-hit != 'true'
run: npm run bundle:ios
env:
APP_MODE: mocked
- name: Cache the jsbundle
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
if: steps.jsbundle-cache.outputs.cache-hit != 'true'
with:
path: |
ios/AllAboutOlaf/main.jsbundle
ios/AllAboutOlaf/main.jsbundle.map
ios/assets/
key: ${{ steps.jsbundle-cache.outputs.cache-primary-key }}
android-bundle:
name: Android Bundle
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
outputs:
cache-key: ${{ steps.jsbundle-cache.outputs.cache-primary-key }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Extract job definition
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-linux.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- name: Load the cached jsbundle
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: jsbundle-cache
with:
path: ./android/generated/
key: ${{ runner.os }}-jsbundle-${{ hashFiles('.node-version', 'package.json', 'package-lock.json', '.github/job.yml', 'tsconfig.json', 'babel.config.js', 'index.js', 'data/**', 'images/**', 'modules/**.ts', 'modules/**.tsx', 'source/**.ts', 'source/**.tsx') }}
- name: Generate jsbundle
if: steps.jsbundle-cache.outputs.cache-hit != 'true'
run: npm run bundle:android
env:
APP_MODE: mocked
- name: Cache the jsbundle
if: steps.jsbundle-cache.outputs.cache-hit != 'true'
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
with:
path: ./android/generated/
key: ${{ steps.jsbundle-cache.outputs.cache-primary-key }}
android:
name: Build for Android
needs: [jest, eslint, android-bundle, cache-npm-linux]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-linux.outputs.cache-key }}
- if: steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3
with:
distribution: ${{ env.java_distribution }}
java-version: ${{ env.java_version }}
- name: Raise the fs.inotify ulimits to 524288 watches/queued events/user instances
run: |
echo 524288 | sudo tee -a /proc/sys/fs/inotify/max_user_watches
echo 524288 | sudo tee -a /proc/sys/fs/inotify/max_queued_events
echo 524288 | sudo tee -a /proc/sys/fs/inotify/max_user_instances
sudo sysctl -p
- name: Gradle
uses: gradle/gradle-build-action@ef76a971e2fa3f867b617efd72f2fbd72cf6f8bc # v2
with:
arguments: bundleRelease --scan
build-root-directory: android
gradle-home-cache-cleanup: true
env:
SENTRY_ORG: frog-pond-labs
SENTRY_PROJECT: all-about-olaf
SKIP_BUNDLING: 'true'
- name: Upload build reports
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
with:
name: build-reports
path: build/reports/
- name: Cache the Android app
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
with:
path: android/app/build/outputs/apk/
key: ${{ steps.app-cache.outputs.cache-primary-key }}
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
with:
name: android-app
path: android/app/build/outputs/apk/
ios-build:
name: Build for iOS
needs: [jest, eslint, cache-cocoapods, cache-npm-macos, cache-bundler-macos]
runs-on: macos-14
outputs:
cache-key: ${{ steps.app-cache.outputs.cache-primary-key }}
steps:
- run: sudo xcode-select -s /Applications/${{ env.xcode_version }}.app
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Extract job definition
run: yq '.jobs.${{ github.job }}' .github/workflows/check.yml > .github/job.yml
- name: Check for cached iOS app
id: app-cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
with:
path: ios/build/Build/Products/
key: ${{ runner.os }}-ios-xcode@${{ env.xcode_version }}-${{ hashFiles('**/project.pbxproj', '**/Podfile', '**/Podfile.lock', 'package-lock.json', '.github/job.yml') }}
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
if: steps.app-cache.outputs.cache-hit != 'true'
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
if: steps.app-cache.outputs.cache-hit != 'true'
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-macos.outputs.cache-key }}
- name: exit if the node_modules cache did not load
if: steps.app-cache.outputs.cache-hit != 'true' && steps.node-cache.outputs.cache-hit != 'true'
run: exit 1
- uses: ruby/setup-ruby@v1
if: steps.app-cache.outputs.cache-hit != 'true'
env:
BUNDLE_FROZEN: "true"
with:
ruby-version: ${{ env.ruby_version }}
bundler-cache: true
- name: Restore Cocoapods cache
if: steps.app-cache.outputs.cache-hit != 'true'
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: pods-cache
with:
path: ios/Pods
key: ${{ needs.cache-cocoapods.outputs.cache-key }}
- name: exit if the Cocoapods cache did not load
if: steps.app-cache.outputs.cache-hit != 'true' && steps.pods-cache.outputs.cache-hit != 'true'
run: exit 1
- uses: mikehardy/buildcache-action@1db83fb06b0da378aa7db7a1110923b904417cbc # v2
if: steps.app-cache.outputs.cache-hit != 'true'
continue-on-error: true
with:
cache_key: ${{ matrix.os }}
upload_buildcache_log: 'true'
- name: Build the iOS app
if: ${{ steps.app-cache.outputs.cache-hit != 'true' && !contains(github.event.pull_request.labels.*.name, 'ci/skip-detox') }}
env:
SKIP_BUNDLING: 'true'
run: npx detox build e2e --configuration ios.sim.release
- name: Cache the iOS app
uses: actions/cache/save@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
with:
path: ios/build/Build/Products/
key: ${{ steps.app-cache.outputs.cache-primary-key }}
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
with:
name: ios-app
path: ios/build/Build/Products/
ios-detox:
name: Detox E2E for iOS
needs: [cache-npm-macos, ios-build, ios-bundle]
runs-on: macos-14
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci/skip-detox') }}
steps:
- run: sudo xcode-select -s /Applications/${{ env.xcode_version }}.app
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- # load the app before reinstalling detox, so that the package-lock cannot change
name: Load the cached iOS app
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: app-cache
with:
path: ios/build/Build/Products/
key: ${{ needs.ios-build.outputs.cache-key }}
- if: steps.app-cache.outputs.cache-hit != 'true'
run: exit 1
- # load the jsbundle before reinstalling detox, so that the package-lock cannot change
name: Load the cached iOS jsbundle
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: jsbundle-cache
with:
path: |
ios/AllAboutOlaf/main.jsbundle
ios/AllAboutOlaf/main.jsbundle.map
ios/assets/
key: ${{ needs.ios-bundle.outputs.cache-key }}
- if: steps.jsbundle-cache.outputs.cache-hit != 'true'
run: exit 1
- name: Move cached jsbundle into place
run: |
mv ios/AllAboutOlaf/main.jsbundle ios/build/Build/Products/Release-iphonesimulator/AllAboutOlaf.app/
mv ios/AllAboutOlaf/main.jsbundle.map ios/build/Build/Products/Release-iphonesimulator/AllAboutOlaf.app/
rm -rf ios/build/Build/Products/Release-iphonesimulator/AllAboutOlaf.app/assets
mv ios/assets ios/build/Build/Products/Release-iphonesimulator/AllAboutOlaf.app/
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version-file: '.node-version'
- name: Restore node_modules cache
uses: actions/cache/restore@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3
id: node-cache
with:
path: node_modules/
key: ${{ needs.cache-npm-macos.outputs.cache-key }}
- # We have to poke Detox because it installs things outside of node_modules/detox/…
name: Re-install Detox
run: npx detox clean-framework-cache && npx detox build-framework-cache
- run: brew tap wix/brew
- run: brew install applesimutils
- name: Run the Detox tests
run: npx detox test e2e --configuration ios.sim.release --cleanup --record-logs failing --record-videos failing --record-performance all --capture-view-hierarchy enabled --take-screenshots failing
- uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3
if: always()
with:
name: detox-ios
path: artifacts/