Skip to content

Commit

Permalink
Update 'npm install' to 'npm ci' in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
andersevenrud committed Jul 31, 2022
1 parent 7f7ea2a commit de83765
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '14'
- run: npm install -g jest@^26
- run: npm install
- run: npm ci -g jest@^26
- run: npm ci
- uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: 125467a1ee6a975ccd559c38662bdc1dd9540cd2803f98db94e1cf3596738773
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm install
- run: npm ci
- run: npm run eslint
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm ci
- run: npm run jest

0 comments on commit de83765

Please sign in to comment.