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 cf3e79b commit 1936711Copy full SHA for 1936711
.travis.yml
@@ -1,5 +1,5 @@
1
language: node_js
2
-sudo: false
+sudo: required
3
node_js:
4
- "4"
5
- "5"
@@ -8,7 +8,14 @@ addons:
8
apt:
9
packages:
10
- xvfb
11
+before_install:
12
+ - curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
13
+ - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
14
+ - sudo apt-get update && sudo apt-get install yarn
15
+cache:
16
+ directories:
17
+ - $HOME/.yarn-cache
18
install:
19
- export DISPLAY=':99.0'
20
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- - npm install
21
+ - yarn
0 commit comments