Skip to content

Commit

Permalink
ci(appveyor.yml): Update AppVeyor config to use Node-12
Browse files Browse the repository at this point in the history
Minor changes to use Node-12. As their images are not yet up-to-date, switched to alternative script
for installing Node.
  • Loading branch information
plroebuck committed May 17, 2019
1 parent a9434ac commit cbb66ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions appveyor.yml
Expand Up @@ -12,7 +12,7 @@ shallow_clone: true
clone_depth: 1
environment:
matrix:
- nodejs_version: '11'
- nodejs_version: '12'
- nodejs_version: '10'
- nodejs_version: '8'
- nodejs_version: '6'
Expand All @@ -35,7 +35,9 @@ install:
## Node-related installs
- ps: Add-AppveyorMessage "Installing Node..."
- set PATH=%APPDATA%\npm;C:\MinGW\bin;%PATH%
- ps: Install-Product node $env:nodejs_version x64
## :NOTE: Use slower `Update-NodeJSInstallation` until pre-installed Node-12 image available
#- ps: Install-Product node $env:nodejs_version $env:platform
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:platform
- ps: Add-AppveyorMessage "Installing npm..."
- npm install -g npm
## Mocha-related package installs
Expand Down

0 comments on commit cbb66ab

Please sign in to comment.