0
0
mirror of https://github.com/puppeteer/puppeteer synced 2024-06-14 14:02:48 +00:00
puppeteer/.appveyor.yml
Andrey Lushnikov f19e2ade0d
feat(install): build node6 support when installing from github ()
This patch starts building node6 support if puppeteer is installed from
github directly and is run under Node 6.
2017-12-08 16:53:12 -08:00

18 lines
339 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 unit-node6
)