Skip to content

Commit 334d3e4

Browse files
committed
Add an appveyor configuration.
1 parent c093d1e commit 334d3e4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

appveyor.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# appveyor file
2+
# http://www.appveyor.com/docs/appveyor-yml
3+
project_id: "e5a5q75l9yfhnfv2"
4+
5+
# build version format
6+
version: "{build}"
7+
8+
# fix lineendings in Windows
9+
init:
10+
- git config --global core.autocrlf input
11+
12+
# what combinations to test
13+
environment:
14+
matrix:
15+
- nodejs_version: 0.10
16+
- nodejs_version: 0.8
17+
18+
# Get the latest stable version of Node 0.STABLE.latest
19+
install:
20+
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
21+
- npm install
22+
23+
build: off

0 commit comments

Comments
 (0)