From e11dde89c584a60e63aa18d7a0db95978b87c74f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Mon, 4 Dec 2017 22:14:32 -0800 Subject: [PATCH] Disable default install targets for Travis, this adds 2x ~17s since travis runs npm install and then we run it too --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index d56b63b07..70833d056 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,8 @@ jobs: cache: directories: - node_modules + # install defaults to "npm install", which is done via make + install: [] script: make test-js - stage: Lint Go code @@ -33,6 +35,8 @@ jobs: cache: directories: - node_modules + # install defaults to "npm install", which is done via make + install: [] script: make lint-js - stage: Build Docker image