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