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 e4fb3a5 commit 6993560Copy full SHA for 6993560
.travis.yml
@@ -1,19 +1,28 @@
1
language: node_js
2
cache:
3
- directories:
4
- - node_modules
+ yarn: true
+ directories:
5
+ - node_modules
6
+
7
node_js:
- - "9"
8
+ - "10"
9
- "8"
10
- "6"
-after_success:
- - npm run coverall
11
12
+install:
13
+ - npm install
14
15
+script:
16
+ - npm run test
17
18
deploy:
- provider: npm
- email: $NPM_EMAIL
- api_key: $NPM_API_KEY
- skip_cleanup: true
- on:
- tags: true
19
- node: "8"
+ provider: npm
20
+ email: $NPM_EMAIL
21
+ api_key: $NPM_API_KEY
22
+ skip_cleanup: true
23
+ on:
24
+ tags: true
25
+ node: "8"
26
27
+after_success:
28
+ - npm run coverall
0 commit comments