Merge pull request #82 from acelaya/feature/disable-tag-build

Disabled yarn build when a tag exists in travis
This commit is contained in:
Alejandro Celaya 2018-12-19 10:44:48 +01:00 committed by GitHub
commit 9d513e9ea0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -16,7 +16,7 @@ install:
script: script:
- yarn lint - yarn lint
- yarn test:ci - yarn test:ci
- yarn build # Make sure the app can be built without errors - if [[ -z $TRAVIS_TAG ]]; then yarn build ; fi
after_success: after_success:
- yarn ocular coverage/clover.xml - yarn ocular coverage/clover.xml

View file

@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
* [#80](https://github.com/shlinkio/shlink-web-client/issues/80) Deeply refactored app to do true dependency injection with an IoC container. * [#80](https://github.com/shlinkio/shlink-web-client/issues/80) Deeply refactored app to do true dependency injection with an IoC container.
* [#79](https://github.com/shlinkio/shlink-web-client/issues/79) Updated to nginx 1.15.7 as the base docker image. * [#79](https://github.com/shlinkio/shlink-web-client/issues/79) Updated to nginx 1.15.7 as the base docker image.
* [#75](https://github.com/shlinkio/shlink-web-client/issues/75) Prevented duplicated `yarn build` in travis when a tag exists.
#### Deprecated #### Deprecated