From 3704546d5dee21f90b234e7cd5df7fd24e912208 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 8 Feb 2019 19:39:50 +0700 Subject: [PATCH] Install website deps in subshell Otherwise we're still in the website dir when we run npm test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f6ff7ad..04ed18f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: node_js node_js: - '8' before_install: - - cd website && npm install + - (cd website && npm install) script: npm test after_success: npm run coverage notifications: