-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ environment: | |
# - nodejs_version: "4" | ||
|
||
matrix: | ||
fast_finish: false | ||
fast_finish: true | ||
|
||
# allow_failures: | ||
# - nodejs_version: "4" # for eslint 5 | ||
|
@@ -22,10 +22,14 @@ install: | |
# Get the latest stable version of Node.js or io.js | ||
- ps: Install-Product node $env:nodejs_version | ||
|
||
# Use [email protected] to work-around issues w/ nyc@<15 on Windows | ||
- npm install -g [email protected] | ||
|
||
# install modules | ||
- ps: >- | ||
if ($env:nodejs_version -eq "4") { | ||
npm install -g npm@3; | ||
} | ||
if ($env:nodejs_version -eq "8" -or $env:nodejs_version -eq "10" -or $env:nodejs_version -eq "12") { | ||
npm install -g [email protected]; | ||
} | ||
- npm install | ||
|
||
# fix symlinks | ||
|