mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-10 02:07:26 +03:00
Added missing docker dependency in travis config
This commit is contained in:
parent
6ec870bb08
commit
dcbf4bfef8
1 changed files with 4 additions and 1 deletions
|
@ -8,13 +8,16 @@ cache:
|
||||||
directories:
|
directories:
|
||||||
- node_modules
|
- node_modules
|
||||||
|
|
||||||
|
services:
|
||||||
|
- docker
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- yarn install
|
- yarn install
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- yarn lint
|
- yarn lint
|
||||||
- yarn test:ci
|
- yarn test:ci
|
||||||
- if [[ -z $TRAVIS_TAG ]]; then docker build . -t shlink-web-client:test ; fi # Test docker image build only when no tag is present
|
- if [[ -z $TRAVIS_TAG ]]; then docker build -t shlink-web-client:test . ; fi # Test docker image build only when no tag is present
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- yarn ocular coverage/clover.xml
|
- yarn ocular coverage/clover.xml
|
||||||
|
|
Loading…
Reference in a new issue