puppeteer/.appveyor.yml
Adi Prasetyo d0513914e4 chore: Add windows CI (appveyor) (#1046)
This patch adds appveyor to make sure puppeteer works reliably on
windows.

Fixes #955
2017-10-16 11:47:21 -07:00

20 lines
406 B
YAML

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