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

Commit 7e0af76

Browse files
committed
Support node 10, 12, 13, 14 instead of 8
1 parent d0b9264 commit 7e0af76

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.travis.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ install:
77
- npm install libxmljs || true
88

99
node_js:
10-
- "8"
11-
- "lts/*"
10+
- "10"
11+
- "12"
12+
- "13"
1213
- "node"
1314

1415
cache:
@@ -17,3 +18,12 @@ cache:
1718
- $HOME/.npm
1819

1920
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
21+
22+
deploy:
23+
provider: npm
24+
email: "$NPM_EMAIL"
25+
api_key: "$NPM_TOKEN"
26+
skip_cleanup: true
27+
on:
28+
tags: true
29+
node: "node"

0 commit comments

Comments
 (0)