From bf7e8bd15598f538cb98f08f05b76746fad428ab Mon Sep 17 00:00:00 2001 From: First-Terraner Date: Tue, 2 Jul 2024 09:39:29 +0200 Subject: [PATCH] Update npm install commands in Android and Node.js workflows --- .github/workflows/android.yml | 4 ++-- .github/workflows/node.js.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 247443e0..10eab2c4 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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 @@ -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 diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 60000649..018d521e 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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