File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,10 +40,12 @@ jobs:
4040 - name : Install root dependencies
4141 run : yarn install --immutable
4242 - name : Install Expo CLI
43- run : npm install -g @expo/cli
43+ run : |
44+ npm install -g @expo/cli
45+ echo "$(npm prefix -g)/bin" >> $GITHUB_PATH
4446 - name : Generate native Android project
4547 working-directory : ${{ env.WORKING_DIRECTORY }}
46- run : expo run:android --no-build-cache --no-install
48+ run : npx expo run:android --no-build-cache --no-install
4749 - name : Build app
4850 working-directory : ${{ env.WORKING_DIRECTORY }}/android
4951 run : ./gradlew assembleDebug --build-cache -PreactNativeArchitectures=arm64-v8a
Original file line number Diff line number Diff line change @@ -38,10 +38,12 @@ jobs:
3838 - name : Install root dependencies
3939 run : yarn install --immutable
4040 - name : Install Expo CLI
41- run : npm install -g @expo/cli
41+ run : |
42+ npm install -g @expo/cli
43+ echo "$(npm prefix -g)/bin" >> $GITHUB_PATH
4244 - name : Generate native iOS project
4345 working-directory : apps/llm
44- run : expo run:ios --no-build-cache --no-install
46+ run : npx expo run:ios --no-build-cache --no-install
4547 - name : Build app
4648 working-directory : apps/llm/ios
4749 run : |
You can’t perform that action at this time.
0 commit comments