We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
npm ci
1 parent ef51945 commit be79dabCopy full SHA for be79dab
.github/workflows/test.yml
@@ -26,8 +26,14 @@ jobs:
26
- run: node --version
27
- run: npm --version
28
29
- - name: Install npm dependencies
30
- run: npm install # switch to `npm ci` when Node.js 6 support is dropped
+ # remove this block when Node.js 6.x is dropped
+ - name: Install npm dependencies (npm i)
31
+ run: npm install
32
+ if: matrix.node < 8
33
+
34
+ - name: Install npm dependencies (npm ci)
35
+ run: npm ci
36
+ if: matrix.node >= 8
37
38
- name: Run lint
39
run: npm run lint
0 commit comments