Browse Source

Install website deps in subshell

Otherwise we're still in the website dir when we run npm test
pull/5/head
Luke Childs 6 years ago
parent
commit
3704546d5d
  1. 2
      .travis.yml

2
.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:

Loading…
Cancel
Save