Skip to content

Commit 096a34f

Browse files
authoredDec 8, 2017
Merge pull request #554 from agathver/node-9
Add NodeJS 9 to CI matrix
2 parents 90d438b + d1cb91d commit 096a34f

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
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

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
"install": "node-pre-gyp install --fallback-to-build"
3030
},
3131
"dependencies": {
32-
"nan": "2.6.2",
33-
"node-pre-gyp": "0.6.36"
32+
"nan": "2.8.0",
33+
"node-pre-gyp": "0.6.39"
3434
},
3535
"devDependencies": {
3636
"nodeunit": "~0.9.1"

0 commit comments

Comments
 (0)
Please sign in to comment.