We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e63349 commit b2cedceCopy full SHA for b2cedce
.travis.yml
@@ -18,16 +18,23 @@ sudo: required
18
19
before_install:
20
- sudo apt-get -qq update
21
+ - curl -o- -L https://yarnpkg.com/install.sh | bash
22
+ - export PATH="$HOME/.yarn/bin:$PATH"
23
24
before_script:
25
- export DISPLAY=:99.0
26
- sh -e /etc/init.d/xvfb start
27
- export NODE_ENV=development
28
29
+cache:
30
+ yarn: true
31
+ directories:
32
+ - node_modules
33
+
34
script:
- - npm run lint
- - npm test
- - npm run test-node
35
+ - yarn lint
36
+ - yarn test
37
+ - yarn test-node
38
39
env:
40
- TRAVIS=travis CXX=g++-4.8
0 commit comments