@@ -304,7 +304,7 @@ jobs:
304
304
macos :
305
305
name : " macOS"
306
306
runs-on : macos-latest
307
- if : ${{ github.event_name != 'schedule' && !contains(github.event.head_commit.message, '[skip ci]') }}
307
+ if : ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
308
308
steps :
309
309
- name : Set up Node.js
310
310
@@ -317,6 +317,11 @@ jobs:
317
317
with :
318
318
path : example/.yarn-offline-mirror
319
319
key : ${{ hashFiles('example/yarn.lock') }}
320
+ - name : Set up react-native@canary
321
+ if : ${{ github.event_name == 'schedule' }}
322
+ run : |
323
+ yarn set-react-version canary-macos
324
+ shell : bash
320
325
- name : Install
321
326
run : |
322
327
yarn ci
@@ -386,10 +391,10 @@ jobs:
386
391
windows :
387
392
name : " Windows"
388
393
runs-on : windows-latest
389
- if : ${{ github.event_name != 'schedule' && !contains(github.event.head_commit.message, '[skip ci]') }}
394
+ if : ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
390
395
strategy :
391
396
matrix :
392
- platform : [ARM , x64]
397
+ platform : [ARM64 , x64]
393
398
configuration : [Debug, Release]
394
399
steps :
395
400
- name : Set up MSBuild
@@ -407,6 +412,11 @@ jobs:
407
412
with :
408
413
path : example/.yarn-offline-mirror
409
414
key : ${{ hashFiles('example/yarn.lock') }}
415
+ - name : Set up react-native@canary
416
+ if : ${{ github.event_name == 'schedule' }}
417
+ run : |
418
+ yarn set-react-version canary-windows
419
+ shell : bash
410
420
- name : Install
411
421
run : |
412
422
yarn ci
@@ -425,9 +435,10 @@ jobs:
425
435
MSBuild Example.sln -t:Rebuild -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.platform }}
426
436
working-directory : example/windows
427
437
- name : Test
438
+ if : ${{ matrix.platform == 'x64' }}
428
439
run : |
429
440
MSBuild ReactTestAppTests.vcxproj -t:Build -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.platform }}
430
- if ("${{ matrix.platform }}" -eq "x64") { VSTest.Console.exe ${{ matrix.platform }}\${{ matrix.configuration }}\ReactTestAppTests.dll }
441
+ VSTest.Console.exe ${{ matrix.platform }}\${{ matrix.configuration }}\ReactTestAppTests.dll
431
442
working-directory : example/windows/ReactTestAppTests
432
443
windows-template :
433
444
name : " Windows [template]"
0 commit comments