diff --git a/.travis.yml b/.travis.yml index 055f9b0b..ced7ddf1 100755 --- a/.travis.yml +++ b/.travis.yml @@ -21,12 +21,13 @@ matrix: - 10 before_script: cd javascript script: - - if [ ! -n "$TRAVIS_TAG" ]; then - npm ci - npm run lint - npm run build - npm test - fi; + - | + if [ ! -n "$TRAVIS_TAG" ]; then + npm ci + npm run lint + npm run build + npm test + fi - if [ -n "$TRAVIS_TAG" ]; then echo "nothing to do - only a tag!"; fi;