Skip to content

Commit

Permalink
test appveyor CI with Node 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias Karakoulakis committed Apr 25, 2020
1 parent 1161317 commit 58d938c
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
version: 1.0.{build}

environment:
nodejs_version: "10"

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install

# branches to build
branches:
# whitelist
only:
- master
- appveyor

# Build worker image (VM template)
image: Visual Studio 2015

platform:
- x86
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
#- npm test

build_script:
- cmd: npm install
# Don't actually build.
build: off

0 comments on commit 58d938c

Please sign in to comment.