diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-10-18 18:03:42 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-10-24 11:32:26 +0200 |
| commit | 2eec1daf30a78806e13043db516ebfa3a3b050be (patch) | |
| tree | d8969b59205dbbad8701aea92b1133338ea5b5e8 | |
| parent | db277050fe080865964e275d1ec0832a9add00f3 (diff) | |
| download | mullvadvpn-2eec1daf30a78806e13043db516ebfa3a3b050be.tar.xz mullvadvpn-2eec1daf30a78806e13043db516ebfa3a3b050be.zip | |
Fix travis script to run tslint for components package
| -rw-r--r-- | .travis.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 1caf78b9a0..2a1c02ab3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,10 +20,8 @@ matrix: - yarn flow-typed install before_script: &nodejs_before_script - export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start - script: &nodejs_script - - yarn lint - - yarn flow - - yarn check-format + script: + - yarn workspace $WORKSPACE lint - yarn workspace $WORKSPACE test # GUI - desktop @@ -34,7 +32,11 @@ matrix: - WORKSPACE="desktop" install: *nodejs_install_script before_script: *nodejs_before_script - script: *nodejs_script + script: + - yarn lint + - yarn flow + - yarn check-format + - yarn workspace $WORKSPACE test # Daemon - macOS |
