File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 android-test :
2525 needs : lint
2626 runs-on : bitrise-react-native-code-push-linux-runner
27+ strategy :
28+ matrix :
29+ variant : [bare, expo]
30+ include :
31+ - variant : bare
32+ test-command : test:android
33+ - variant : expo
34+ test-command : test:expo:android
2735 steps :
2836 - uses : actions/checkout@v7
2937
@@ -50,11 +58,19 @@ jobs:
5058 target : google_apis
5159 arch : x86
5260 disable-animations : true
53- script : npm run test:android
61+ script : npm run ${{ matrix. test-command }}
5462
5563 ios-test :
5664 needs : lint
5765 runs-on : bitrise-react-native-code-push-macos-runner
66+ strategy :
67+ matrix :
68+ variant : [bare, expo]
69+ include :
70+ - variant : bare
71+ test-command : test:ios
72+ - variant : expo
73+ test-command : test:expo:ios
5874 steps :
5975 - uses : actions/checkout@v7
6076
6379 - name : Run iOS Tests
6480 run : |
6581 npm install
66- npm run test:ios
82+ npm run ${{ matrix. test-command }}
You can’t perform that action at this time.
0 commit comments