Skip to content

Commit 4db617c

Browse files
ci: test 2
1 parent 2d19d53 commit 4db617c

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/build-android-llm-example.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/build-ios-llm-example.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)