Skip to content

Commit

Permalink
chore: add appveyor CI (#9)
Browse files Browse the repository at this point in the history
This adds appveyor for Windows test coverage. As per issue #7, we expect
some Windows failures at this point. The intent is to land this first to
track Windows compatibility.

Issue #7
  • Loading branch information
nfischer authored Mar 17, 2018
1 parent 743b92e commit f67126b
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
environment:
matrix:
- nodejs_version: '8'
- nodejs_version: '7'
- nodejs_version: '6'

version: '{build}'

# Install scripts. (runs after repo cloning)
install:
- ps: Install-Product node $env:nodejs_version
- npm -g install npm@latest
- set PATH=%APPDATA%\npm;%PATH%
- node --version
- npm --version
- npm install

matrix:
fast_finish: true

# No need for MSBuild on this project
build: off

test_script:
- npm test

0 comments on commit f67126b

Please sign in to comment.