We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 116baf9 commit 0422ea2Copy full SHA for 0422ea2
.travis.yml
@@ -1,30 +1,40 @@
1
language: node_js
2
+
3
sudo: required
4
5
node_js:
6
- '7'
7
- '6'
8
9
addons:
10
apt:
11
packages:
12
- xvfb
13
14
cache:
15
yarn: true
16
directories:
17
- $HOME/.yarn-cachegi
18
19
before_install:
20
- export DISPLAY=':99.0'
21
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
22
23
install:
- - npm install
24
+ - yarn install
25
- cd packages/create-elm-app
- - npm link
26
27
+ - yarn link
28
- cd ..
29
30
script: npm test
31
32
after_success:
- - npm run semantic-release
33
+ - yarn run semantic-release
34
35
branches:
36
except:
37
- /^v\d+\.\d+\.\d+$/
38
39
notifications:
40
email: false
0 commit comments