Skip to content

Commit

Permalink
#169: use npm ci
Browse files Browse the repository at this point in the history
  • Loading branch information
felixerdy committed Mar 24, 2022
1 parent 8c2f6b5 commit e9f398e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Run ionic build
run: |
npm install npm@8 -g
npm install
npm ci
ionic cap build android --no-interactive --no-open --confirm --prod
- name: Setup Android NDK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Run ionic build
run: |
npm install npm@8 -g
npm install
npm ci
ionic cap build ios --no-interactive --no-open --confirm --prod
- name: Bump version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/distribute-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Run ionic build
run: |
npm install npm@8 -g
npm install --silent
npm ci --silent
ionic cap build android --no-interactive --no-open --confirm --prod
- name: Setup Android NDK
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/distribute-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Run ionic build
run: |
npm install npm@8 -g
npm install --silent
npm ci --silent
ionic cap build ios --no-interactive --no-open --confirm --prod
- name: Bump version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
npm install npm@8 -g
npm install
npm ci
- name: Run tests
run: npm test -- --no-watch --no-progress --browsers=ChromeHeadlessCI

0 comments on commit e9f398e

Please sign in to comment.