Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

Commit aa4e182

Browse files
committed
Support node 10, 12,13,14 instaad of 8. Automate npm pub
1 parent c7bde1d commit aa4e182

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

.travis.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ sudo: false
33
language: node_js
44

55
node_js:
6-
- "8"
7-
- "lts/*"
6+
- "10"
7+
- "12"
8+
- "13"
89
- "node"
910

1011
cache:
@@ -13,3 +14,12 @@ cache:
1314
- $HOME/.npm
1415

1516
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
17+
18+
deploy:
19+
provider: npm
20+
email: "$NPM_EMAIL"
21+
api_key: "$NPM_TOKEN"
22+
skip_cleanup: true
23+
on:
24+
tags: true
25+
node: "node"

0 commit comments

Comments
 (0)