Skip to content

Commit

Permalink
[Tests] appveyor: on node 8-12, use npm 6.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
raphinesse committed Feb 14, 2020
1 parent 139cfa8 commit 669b5e0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions appveyor.yml
Expand Up @@ -26,8 +26,10 @@ install:
- ps: >-
if ($env:nodejs_version -eq "4") {
npm install -g npm@3;
}
if ($env:nodejs_version -eq "12") {
} elseif (
$env:nodejs_version -eq "8" -or
$env:nodejs_version -eq "10" -or
$env:nodejs_version -eq "12") {
npm install -g npm@6.10.3;
}
- npm install
Expand Down

0 comments on commit 669b5e0

Please sign in to comment.