forked from puppeteer/puppeteer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(CI): fix node.js version on Travis and AppVeyor (puppeteer#2180)
AppVeyour was configured to use the latest versions of Node for major releases. To make builds more reproducible I've changed both Travis and AppVeyor to use the same fixed versions of Node 6 and Node 7 that AppVeyor is using at the moment.
- Loading branch information
1 parent
5af70e8
commit fc7e4d1
Showing
2 changed files
with
19 additions
and
19 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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
environment: | ||
matrix: | ||
- nodejs_version: "6" | ||
- nodejs_version: "7" | ||
|
||
build: off | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version | ||
- npm install | ||
- if "%nodejs_version%" == "7" ( | ||
npm run lint && | ||
npm run coverage && | ||
npm run test-doclint | ||
) else ( | ||
npm run unit-node6 | ||
) | ||
environment: | ||
matrix: | ||
- nodejs_version: "6.12.3" | ||
- nodejs_version: "7.10.1" | ||
|
||
build: off | ||
|
||
install: | ||
- ps: Install-Product node $env:nodejs_version | ||
- npm install | ||
- if "%nodejs_version%" == "7.10.1" ( | ||
npm run lint && | ||
npm run coverage && | ||
npm run test-doclint | ||
) else ( | ||
npm run unit-node6 | ||
) |
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