Skip to content

Commit

Permalink
Merge pull request #870 from tediousjs/node-12-tests
Browse files Browse the repository at this point in the history
Add Node v12 to build matrix
  • Loading branch information
dhensby authored Nov 5, 2019
2 parents d486fce + 0c76272 commit 1416c0b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ node_js:
- "6"
- "8"
- "10"
- "12"

jobs:
include:
Expand Down
10 changes: 8 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ environment:
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"
- nodejs_version: "12"

install:
- ps: Install-Product node $env:nodejs_version
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:PLATFORM
- npm install
- IF "%nodejs_version%" == "10" (npm install [email protected]) ELSE (npm install [email protected])
- IF %nodejs_version% GEQ 10 (npm install [email protected]) ELSE (npm install [email protected])

platform:
- x86
- x64

cache:
- node_modules
Expand Down

0 comments on commit 1416c0b

Please sign in to comment.