puppeteer/.appveyor.yml
Fedor Korotkov fc7e4d1065 chore(CI): fix node.js version on Travis and AppVeyor (#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.
2018-03-13 07:44:14 -07:00

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
)