File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 86
86
echo "ruby --version"
87
87
ruby --version
88
88
continue-on-error : true # brew overwrite step addresses a python install issue: https://github.com/actions/runner-images/issues/8500
89
- - name : Install packages
90
- if : steps.restore-cache.outputs.cache-hit != 'true'
91
- uses : ./.github/actions/install-with-retries
92
- with :
93
- skip-cypress-binary : true
94
89
- name : Update CocoaPods
95
90
if : ${{ matrix.platform == 'ios' }}
96
91
run : |
Original file line number Diff line number Diff line change 5
5
"devDependencies" : {
6
6
"@supercharge/promise-pool" : " ^2.4.0" ,
7
7
"commander" : " ^10.0.1" ,
8
+ "esbuild-register" : " ^3.5.0" ,
8
9
"json" : " ^11.0.0" ,
9
10
"strip-json-comments-cli" : " ^2.0.2"
10
11
},
Original file line number Diff line number Diff line change 27
27
28
28
# Run npm run android in the background
29
29
if [ $BUILD_TOOL == ' expo' ]; then
30
- log " command" " npm run android -- -p 19000"
30
+ log " command" " npm run android -- -p 19000 > $LOG_FILE & "
31
31
# Run npm run android in the background
32
- npm run android -- -p 19000 &
32
+ npm run android -- -p 19000 > $LOG_FILE &
33
33
npx wait-on -t 20000 tcp:19000
34
34
else
35
35
log " command" " cd android"
You can’t perform that action at this time.
0 commit comments