From 0ae40c0274ff4bea34041b27c5436d2cbad59335 Mon Sep 17 00:00:00 2001 From: Prateek Srivastava Date: Fri, 15 Jun 2018 14:55:11 -0700 Subject: [PATCH] Split install into it's own step. Idea here is to seperate the commands for two reasons: * see their output seperately * time them seperately so we can better understand where the bottlenecks are (though 99.999% sure it's saucelabs :P) --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1c4cb0e5..b95883fe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,7 @@ jobs: - restore_cache: key: dependency-cache-{{ checksum "package.json" }} - run: npm config set "//registry.npmjs.org/:_authToken" $NPM_AUTH + - run: make install - run: make test - save_cache: key: dependency-cache-{{ checksum "package.json" }}