Skip to content

Commit

Permalink
Update npm install commands in Android and Node.js workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
KKA11010 committed Jul 2, 2024
1 parent 42ef928 commit bf7e8bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ 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 i
run: npm i --force

- name: PreBuild Android
run: npx expo prebuild -p android --clean --npm
Expand Down Expand Up @@ -131,7 +131,7 @@ 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: npm ci --force

- name: PreBuild Android
run: npx expo prebuild -p android --clean
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm i
- run: npm i --force
- run: npm run lint

- name: Upload coverage reports to Codecov
Expand Down

0 comments on commit bf7e8bd

Please sign in to comment.