Skip to content

Commit

Permalink
Add AppVeyor config (#1540)
Browse files Browse the repository at this point in the history
* Add AppVeyor config

* Limit AppVeyor build to just running unit tests

* Test against multiple major versions of node in AppVeyor

* Test against multiple platforms instead of multiple versions
  • Loading branch information
jeskew committed Jun 6, 2017
1 parent f65c11d commit 6a9debc
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions .npmignore
Expand Up @@ -6,6 +6,7 @@
.npmignore
.tesselinclude
apis/*.normal.json
appveyor.yml
bower.json
configuration
configuration.sample
Expand Down
22 changes: 22 additions & 0 deletions appveyor.yml
@@ -0,0 +1,22 @@
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: ""

platform:
- x86
- x64

init:
- git config --global core.autocrlf true

install:
- ps: Install-Product node $env:nodejs_version
- npm install

test_script:
- node --version
- npm --version
- npm run unit

build: off

0 comments on commit 6a9debc

Please sign in to comment.