Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: move branch update to after_success
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Sep 10, 2019
1 parent cbc54fc commit 3fbf6e8
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ stages:
- check
- test
- cov
- interop

node_js:
- '10'
Expand All @@ -20,7 +19,9 @@ os:
- windows

script: npx nyc -s npx aegir test -t node --timeout 10000 --bail
after_success: npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
after_success:
- npx nyc report --reporter=text-lcov > coverage.lcov && npx codecov
- test $TRAVIS_BRANCH = "master" && npx aegir update-last-successful-build

jobs:
include:
Expand Down Expand Up @@ -62,10 +63,5 @@ jobs:
- npm link
- npm run test:interop

- stage: tag
if: branch = master
script:
- npx aegir update-last-successful-build

notifications:
email: false

0 comments on commit 3fbf6e8

Please sign in to comment.