Skip to content

Commit

Permalink
chore(ci): use npm ci instead of npm i (#2872)
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed May 19, 2020
1 parent 377acd3 commit 0be58a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-push.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
path: ./node_modules
key: ${{ runner.os }}-node-12-${{ hashFiles('**/package-lock.json') }}
- if: "!contains(steps.log.outputs.message, 'ci skip')"
run: npm install
run: npm ci
- if: "!contains(steps.log.outputs.message, 'ci skip')"
run: npm run lint

Expand All @@ -54,7 +54,7 @@ jobs:
- if: "!contains(steps.log.outputs.message, 'ci skip')"
name: install & build
run: |
npm install
npm ci
npm run build:w3c
- if: "!contains(steps.log.outputs.message, 'ci skip')"
run: npm run test:headless
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- if: "!contains(steps.log.outputs.message, 'ci skip')"
name: install & build
run: |
npm install
npm ci
npm run build:w3c & npm run build:geonovum
- if: "!contains(steps.log.outputs.message, 'ci skip')"
run: npm run test:karma
Expand Down

0 comments on commit 0be58a1

Please sign in to comment.