Skip to content

Commit 6633278

Browse files
committedOct 20, 2019
⚒ fix test scripts
1 parent 7c8e67c commit 6633278

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎.github/workflows/CI.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ jobs:
5151
with:
5252
node-version: ${{ matrix.node }}
5353
- name: Install Packages
54-
run: npm install
54+
run: |
55+
if [ ${{ matrix.node }} -eq 6 ]; then
56+
npm install --global npm@^6.0.0
57+
fi
58+
npm install
5559
- name: Install ESLint v${{ matrix.eslint }}
5660
run: npm install --no-save eslint@^${{ matrix.eslint }}.0.0
5761
- name: Build

0 commit comments

Comments
 (0)
Please sign in to comment.