Skip to content

Commit

Permalink
Build: Add AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Dec 21, 2017
1 parent bfac1d2 commit c1a2d37
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml

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

# build version format
version: "{build}"

# what combinations to test
environment:
matrix:
- nodejs_version: 0.10

# Get the stable version of node
install:
- ps: Install-Product node $env:nodejs_version
- npm install

build: off

test_script:
- node --version
- npm --version
- cmd: npm test

0 comments on commit c1a2d37

Please sign in to comment.