We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ec2156 commit 4fbb835Copy full SHA for 4fbb835
.github/workflows/node.js.yml
@@ -24,7 +24,11 @@ jobs:
24
uses: actions/setup-node@v1
25
with:
26
node-version: ${{ matrix.node-version }}
27
- - run: npm ci
+ # npm of 14.x is not compatible with lockfileVersion 3, that's why we use `install` here instead of `ci`
28
+ - if: matrix.node-version == '14.x'
29
+ run: npm install
30
+ - if: matrix.node-version != '14.x'
31
+ run: npm ci
32
- run: npm run build --if-present
33
- run: npm run lint
34
- run: npm test
0 commit comments