Skip to content

Commit

Permalink
Merge pull request #13374 from Expensify/andrew-e2e-fix-2
Browse files Browse the repository at this point in the history
[No QA]Run `npm install` before building each build
  • Loading branch information
luacmartins authored Dec 6, 2022
2 parents a2c5376 + cdad438 commit 712b084
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 @@ -247,6 +247,13 @@ jobs:
- name: Checkout "Compare" commit
run: git checkout ${{ github.event.before }}

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

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

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 712b084

Please sign in to comment.