puppeteer/.appveyor.yml
Andrey Lushnikov 11d94525c8
chore: fix appveyor build (#1558)
This patch:
- starts using '&&' instead of '&' so that any failed commands results
  in build failure
- removes test-node6-transformer step from the node6 target
2017-12-08 12:12:30 -08:00

19 lines
365 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 build &&
yarn run unit-node6
)