Skip to content

Commit

Permalink
Try fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Oct 27, 2019
1 parent b0f53d9 commit 4cb08a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/node-windows.yml
Expand Up @@ -23,7 +23,8 @@ jobs:
node-version: ${{ matrix.node }}
- name: Check npm version
# This is only necessary until we dump Node 6
run: IF ${{ matrix.node }} LSS 8 npm i npm@5 -g
run: if [ ${{ matrix.node }} -lt 8 ]; then npm i npm@5 -g; fi;
shell: bash
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run tests
Expand Down

0 comments on commit 4cb08a9

Please sign in to comment.