File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 3
3
# https://docs.travis-ci.com/user/customizing-the-build/
4
4
# https://docs.travis-ci.com/user/migrating-from-legacy/
5
5
6
+ filter_secrets : false
6
7
language : node_js
7
8
8
9
node_js :
@@ -21,3 +22,18 @@ before_script:
21
22
- npm link eslint-config-modular
22
23
23
24
script : npm test
25
+
26
+ jobs :
27
+ include :
28
+ - stage : Deploy
29
+ name : Publish to npm
30
+ script : true
31
+ after_success : true
32
+ deploy :
33
+ provider : npm
34
+ email : $NPM_EMAIL
35
+ api_key : $NPM_API_KEY
36
+ skip_cleanup : true
37
+ on :
38
+ tags : true
39
+ branch : master
Original file line number Diff line number Diff line change 56
56
"test" : " mocha && npm run lint" ,
57
57
"upgrade" : " npm-check -u" ,
58
58
"bump" : " bump --prompt --tag --push --all" ,
59
- "release" : " npm run upgrade && npm test && npm run bump && npm publish "
59
+ "release" : " npm run upgrade && npm test && npm run bump"
60
60
},
61
61
"devDependencies" : {
62
62
"babel-eslint" : " ^10.0.1" ,
You can’t perform that action at this time.
0 commit comments