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
This commit is contained in:
Andrey Lushnikov 2017-12-08 12:12:30 -08:00 committed by GitHub
parent e6725e15af
commit 11d94525c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,11 +9,10 @@ install:
- ps: Install-Product node $env:nodejs_version
- yarn install
- if "%nodejs_version%" == "7" (
yarn run lint &
yarn run coverage &
yarn run lint &&
yarn run coverage &&
yarn run test-doclint
) else (
yarn run test-node6-transformer &
yarn run build &
yarn run unit-node6
yarn run build &&
yarn run unit-node6
)