Skip to content

Commit

Permalink
Run npm install before building each build
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewGable committed Dec 6, 2022
1 parent a2c5376 commit 2ed9539
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/preDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,13 @@ jobs:
- name: Make zip directory for everything to send to AWS Device Farm
run: mkdir zip

- name: Install node packages
uses: nick-invision/retry@0711ba3d7808574133d713a0d92d2941be03a350
with:
timeout_minutes: 10
max_attempts: 5
command: npm ci

- name: Checkout "Compare" commit
run: git checkout ${{ github.event.before }}

Expand All @@ -258,6 +265,13 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install node packages
uses: nick-invision/retry@0711ba3d7808574133d713a0d92d2941be03a350
with:
timeout_minutes: 10
max_attempts: 5
command: npm ci

- name: Build "Baseline" APK
run: npm run android-build-e2e

Expand Down

0 comments on commit 2ed9539

Please sign in to comment.