Skip to content

Commit

Permalink
Update npm install step in GitHub Actions android workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KKA11010 committed May 27, 2024
1 parent 8667fbe commit 8b8742e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ jobs:
packages: platform-tools platforms;android-34 build-tools;33.0.1 build-tools;34.0.0 ndk;25.1.8937393 cmake;3.22.1

- name: Install deps
run: npm ci
run: |
if [ -e package-lock.json ]; then
npm ci
else
npm i
fi
- name: PreBuild Android
run: yes | npx expo prebuild -p android --clean
Expand Down

0 comments on commit 8b8742e

Please sign in to comment.