diff -r 343675b8cc97 -r aaaf9b0b09f6 cms/app-client/.travis.yml --- a/cms/app-client/.travis.yml Fri Sep 08 12:04:21 2017 +0200 +++ b/cms/app-client/.travis.yml Fri Sep 08 15:03:29 2017 +0200 @@ -4,18 +4,20 @@ - "6" sudo: false +dist: trusty + +addons: + chrome: stable cache: - directories: - - $HOME/.npm + yarn: true before_install: - - npm config set spin false - - npm install -g phantomjs-prebuilt - - phantomjs --version + - curl -o- -L https://yarnpkg.com/install.sh | bash + - export PATH=$HOME/.yarn/bin:$PATH install: - - npm install + - yarn install --non-interactive script: - - npm test + - yarn test