We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d3a0a3 + e1e4a2a commit 61c5726Copy full SHA for 61c5726
.travis.yml
@@ -1,19 +1,27 @@
1
language: node_js
2
cache:
3
- directories:
4
- - node_modules
+ directories:
+ - node_modules
5
+
6
node_js:
- - "9"
7
+ - "10"
8
- "8"
9
- "6"
-after_success:
10
- - npm run coverall
11
+install:
12
+ - npm install
13
14
+script:
15
+ - npm test
16
17
deploy:
- provider: npm
- email: $NPM_EMAIL
- api_key: $NPM_API_KEY
- skip_cleanup: true
- on:
18
- tags: true
19
- node: "8"
+ provider: npm
+ email: $NPM_EMAIL
20
+ api_key: $NPM_API_KEY
21
+ skip_cleanup: true
22
+ on:
23
+ tags: true
24
+ node: "8"
25
26
+after_success:
27
+ - npm run coverall
0 commit comments