Skip to content

Commit

Permalink
⚒ fix test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticatea committed Oct 20, 2019
1 parent 7c8e67c commit 6633278
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ jobs:
with:
node-version: ${{ matrix.node }}
- name: Install Packages
run: npm install
run: |
if [ ${{ matrix.node }} -eq 6 ]; then
npm install --global npm@^6.0.0
fi
npm install
- name: Install ESLint v${{ matrix.eslint }}
run: npm install --no-save eslint@^${{ matrix.eslint }}.0.0
- name: Build
Expand Down

0 comments on commit 6633278

Please sign in to comment.