From f7a98396146423c5395601607f081732657fa5f3 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Tue, 20 Feb 2018 10:19:41 +1100 Subject: [PATCH] Fix CI --- .travis.yml | 3 --- ci/docker.sh | 2 +- ci/script.sh | 3 +++ 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b84f4e38f0..05fe38f8fd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,9 +23,6 @@ branches: - /^v\d+\.\d+\.\d+/ install: - npm i -g bolt -- rm -rf node_modules -- bolt -- bolt build script: ci/script.sh after_success: ci/coverage.sh notifications: diff --git a/ci/docker.sh b/ci/docker.sh index 6534041edf..99fbf50950 100755 --- a/ci/docker.sh +++ b/ci/docker.sh @@ -7,8 +7,8 @@ npm i -g bolt cd /code -rm -rf node_modules bolt bolt build +bolt lint CI=true bolt ws test -- --installer=$NODE_INSTALLER diff --git a/ci/script.sh b/ci/script.sh index cd9911f05e..21bd09d131 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -3,5 +3,8 @@ if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then sudo docker run --privileged --interactive --tty --volume $(pwd):/code malept/electron-forge-container:latest /code/ci/docker.sh $NODE_INSTALLER else + bolt + bolt build + bolt lint bolt ws test fi