Skip to content

Commit c1a2d37

Browse files
committed
Build: Add AppVeyor
1 parent bfac1d2 commit c1a2d37

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

appveyor.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# appveyor file
2+
# http://www.appveyor.com/docs/appveyor-yml
3+
4+
# branches to build
5+
branches:
6+
# whitelist
7+
only:
8+
- master
9+
10+
# build version format
11+
version: "{build}"
12+
13+
# what combinations to test
14+
environment:
15+
matrix:
16+
- nodejs_version: 0.10
17+
18+
# Get the stable version of node
19+
install:
20+
- ps: Install-Product node $env:nodejs_version
21+
- npm install
22+
23+
build: off
24+
25+
test_script:
26+
- node --version
27+
- npm --version
28+
- cmd: npm test

0 commit comments

Comments
 (0)