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 5ebe744 commit 89170feCopy full SHA for 89170fe
.travis.yml
@@ -1,13 +1,14 @@
1
language: node_js
2
sudo: false
3
node_js:
4
+ - 8
5
- 7
6
- 6
- - 4
7
8
cache:
9
directories:
10
- ~/.npm
11
+ - node_modules
12
13
branches:
14
only:
@@ -21,8 +22,15 @@ before_install:
21
22
- npm set loglevel error
23
- npm set progress false
24
25
+script:
26
+ - npm run lint && npm run test
27
+
28
after_script:
29
- npm prune
30
-after_success:
- # - npm run semantic-release || true
31
+deploy:
32
+ provider: script
33
+ script: npm run travis-deploy-once "npm run semantic-release"
34
+ skip_cleanup: true
35
+ on:
36
+ branch: master
0 commit comments