puppeteer/.appveyor.yml
Andrey Lushnikov 78ebf401c2
chore(ci): move all CI from Node7 to Node8 (#2938)
Node 8 is the current LTS. We should use it by default on all
our CIs.
2018-07-26 16:27:11 -07:00

18 lines
332 B
YAML

environment:
matrix:
- nodejs_version: "6.12.3"
- nodejs_version: "8.11.3"
build: off
install:
- ps: Install-Product node $env:nodejs_version
- npm install
- if "%nodejs_version%" == "8.11.3" (
npm run lint &&
npm run coverage &&
npm run test-doclint
) else (
npm run unit-node6
)