Skip to content

Commit

Permalink
Revert "CI: use npm ci on Node.js >=8."
Browse files Browse the repository at this point in the history
This reverts commit be79dab.

Too complex to make this work with full version numbers
  • Loading branch information
XhmikosR authored and nickmerwin committed Nov 26, 2019
1 parent 236529b commit 33eccc3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/test.yml
Expand Up @@ -26,14 +26,8 @@ jobs:
- run: node --version
- run: npm --version

# remove this block when Node.js 6.x is dropped
- name: Install npm dependencies (npm i)
run: npm install
if: matrix.node < 8

- name: Install npm dependencies (npm ci)
run: npm ci
if: matrix.node >= 8
- name: Install npm dependencies
run: npm install # switch to `npm ci` when Node.js 6 support is dropped

- name: Run lint
run: npm run lint
Expand Down

0 comments on commit 33eccc3

Please sign in to comment.