mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f19e2ade0d
This patch starts building node6 support if puppeteer is installed from github directly and is run under Node 6.
18 lines
339 B
YAML
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
|
|
)
|