Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
ci(travis): fail fast
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed May 20, 2019
1 parent 1c7bbba commit 009e670
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,12 @@ before_script:
fi
script:
- yarn lint-ci || travis_terminate 1
- yarn test-ci || travis_terminate 1
- yarn coveralls || travis_terminate 1
- |
set -e
yarn lint-ci
yarn test-ci
yarn coveralls || travis_terminate 1
set +e
after_success:
- test $TRAVIS_REPO_SLUG = 'LN-Zap/zap-desktop' &&
Expand Down

0 comments on commit 009e670

Please sign in to comment.