mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
fc7e4d1065
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.
18 lines
332 B
YAML
18 lines
332 B
YAML
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
|
|
)
|