Skip to content

Commit 7b928fb

Browse files
committedNov 1, 2017
Add NodeJS 9 to CI matrix
1 parent 90d438b commit 7b928fb

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ node_js:
1313
- "6"
1414
- "7"
1515
- "8"
16+
- "9"
1617

1718
addons:
1819
apt:
@@ -34,4 +35,4 @@ script: npm test
3435

3536
after_success:
3637
- REGEX='^v(0|[1-9]+)\.(0|[1-9]+)\.(0|[1-9]+)$'
37-
- if [[ $TRAVIS_TAG =~ $REGEX ]] || [[ $TRAVIS_COMMIT_MESSAGE == *"publish binary"* ]]; then echo "Publishing"; npm install node-pre-gyp-github; ./node_modules/.bin/node-pre-gyp configure; ./node_modules/.bin/node-pre-gyp build; ./node_modules/.bin/node-pre-gyp package; ./node_modules/.bin/node-pre-gyp-github publish --release; fi;
38+
- if [[ $TRAVIS_TAG =~ $REGEX ]] || [[ $TRAVIS_COMMIT_MESSAGE == *"publish binary"* ]]; then echo "Publishing"; npm install node-pre-gyp-github; ./node_modules/.bin/node-pre-gyp configure; ./node_modules/.bin/node-pre-gyp build; ./node_modules/.bin/node-pre-gyp package; ./node_modules/.bin/node-pre-gyp-github publish --release; fi;

‎appveyor.yml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ environment:
2020
platform: x64
2121
- nodejs_version: "8"
2222
platform: x86
23+
- nodejs_version: "9"
24+
platform: x64
25+
- nodejs_version: "9"
26+
platform: x86
2327

2428
install:
2529
- where npm

0 commit comments

Comments
 (0)
Please sign in to comment.