diff options
| author | XhmikosR <[email protected]> | 2019-11-26 11:00:30 +0200 |
|---|---|---|
| committer | Nick Merwin <[email protected]> | 2019-11-26 09:08:43 -0800 |
| commit | 33eccc31975a1c692ed1064357150e2b91b91057 (patch) | |
| tree | 54177e112c4a177484c15df9649a3bf7ba7130e6 /.github/workflows | |
| parent | 236529bc7bb582a978940147e8e5faabfb87adab (diff) | |
| download | node-coveralls-33eccc31975a1c692ed1064357150e2b91b91057.tar.xz node-coveralls-33eccc31975a1c692ed1064357150e2b91b91057.zip | |
Revert "CI: use `npm ci` on Node.js >=8."
This reverts commit be79dab7f164da7762951fa5940dacdd3ec7ceff.
Too complex to make this work with full version numbers
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 419d6c4..26ad1ae 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 |
