Skip to content

Commit b618f05

Browse files
committed
add node v9 & v10 in travis & appveyor
1 parent b3e77f1 commit b618f05

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ env:
1717
#- TRAVIS_ELECTRON_VERSION="1.4.14" TRAVIS_NODE_VERSION="6"
1818
- TRAVIS_NODE_VERSION="8"
1919
- TRAVIS_NODE_VERSION="9"
20+
- TRAVIS_NODE_VERSION="10"
2021

2122
matrix:
2223
exclude:

appveyor.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ environment:
3636
- nodejs_version: 8
3737
platform: x64
3838

39+
- nodejs_version: 9
40+
platform: x64
41+
42+
- nodejs_version: 10
43+
platform: x64
44+
3945
# - electron_version: "1.4.14"
4046
# nodejs_version: 6
4147
# platform: x86
@@ -57,7 +63,6 @@ environment:
5763
# platform: x86
5864

5965

60-
6166
# clone directory
6267
clone_folder: c:\projects\node-occ
6368

test/helpers.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ const fs = require("fs");
1111

1212
function remove_file(filename, optional_callback) {
1313

14+
optional_callback = optional_callback || function() {};
15+
1416
fs.exists(filename, function (exists) {
1517

1618
if (exists) {

0 commit comments

Comments
 (0)