Skip to content

Commit

Permalink
chore: fix appveyor build (#1558)
Browse files Browse the repository at this point in the history
This patch:
- starts using '&&' instead of '&' so that any failed commands results
  in build failure
- removes test-node6-transformer step from the node6 target
  • Loading branch information
aslushnikov committed Dec 8, 2017
1 parent e6725e1 commit 11d9452
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .appveyor.yml
Expand Up @@ -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
)

0 comments on commit 11d9452

Please sign in to comment.