Skip to content

Commit f52ab9a

Browse files
committed
added appveyor file
1 parent 6c804e8 commit f52ab9a

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+
init:
5+
- git config --global core.autocrlf input
6+
7+
# what combinations to test
8+
environment:
9+
matrix:
10+
- nodejs_version: 0.10
11+
- nodejs_version: 0.8
12+
- nodejs_version: 0.11
13+
14+
# combinations having this can fail
15+
matrix:
16+
allow_failures:
17+
- nodejs_version: 0.11
18+
19+
install:
20+
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $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)