Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #175 from atom/test-on-node-12
Browse files Browse the repository at this point in the history
add CI support for Node 12
  • Loading branch information
shiftkey committed Apr 24, 2019
2 parents bcbf752 + 9125bee commit 9b29fe8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -4,7 +4,7 @@ dist: trusty
os:
- linux
- osx
node_js: 10
node_js: 12

env:
- CC=clang CXX=clang++ npm_config_clang=1
Expand Down
3 changes: 2 additions & 1 deletion appveyor.yml
Expand Up @@ -14,7 +14,8 @@ branches:
clone_depth: 10

install:
- ps: Install-Product node 10 x64
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild 12) x64
- npm install

build_script:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -34,7 +34,7 @@
"lint": "npm run cpplint",
"cpplint": "node-cpplint --filters legal-copyright,build-include,build-namespaces src/*.cc",
"test": "npm run lint && npm build . && mocha --require babel-core/register spec/",
"prebuild-node": "prebuild -t 6.11.0 -t 7.9.0 -t 8.9.0 -t 9.4.0 -t 10.11.0 -t 11.9.0 --strip",
"prebuild-node": "prebuild -t 6.11.0 -t 7.9.0 -t 8.9.0 -t 9.4.0 -t 10.11.0 -t 11.9.0 -t 12.0.0 --strip",
"prebuild-node-ia32": "prebuild -t 6.11.0 -t 7.9.0 -t 8.9.0 -t 9.4.0 -a ia32 --strip",
"prebuild-electron": "prebuild -t 1.6.11 -t 1.7.10 -t 1.8.0 -t 2.0.0 -t 3.0.0 -t 4.0.4 -r electron --strip",
"prebuild-electron-ia32": "prebuild -t 1.6.11 -t 1.7.10 -t 1.8.0 -t 2.0.0 -t 3.0.0 -t 4.0.4 -r electron -a ia32 --strip",
Expand Down

0 comments on commit 9b29fe8

Please sign in to comment.