We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c8e67c commit 6633278Copy full SHA for 6633278
.github/workflows/CI.yml
@@ -51,7 +51,11 @@ jobs:
51
with:
52
node-version: ${{ matrix.node }}
53
- name: Install Packages
54
- run: npm install
+ run: |
55
+ if [ ${{ matrix.node }} -eq 6 ]; then
56
+ npm install --global npm@^6.0.0
57
+ fi
58
+ npm install
59
- name: Install ESLint v${{ matrix.eslint }}
60
run: npm install --no-save eslint@^${{ matrix.eslint }}.0.0
61
- name: Build
0 commit comments