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 48cf6ba commit 3998391Copy full SHA for 3998391
.travis.yml
@@ -1,18 +1,28 @@
1
language: node_js
2
cache:
3
- directories:
4
- - node_modules
+ yarn: true
+ directories:
5
+ - node_modules
6
+
7
node_js:
- - "10"
- - "8"
8
- - "6"
+ - "10"
9
+ - "8"
10
+ - "6"
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
- node: "8"
19
+ 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:
- - npm run coverall
28
+ - npm run coverall
0 commit comments