Skip to content

Commit f7785a6

Browse files
committed
appveyor: added
1 parent bc0a612 commit f7785a6

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

appveyor.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Test against this version of Node.js
2+
environment:
3+
matrix:
4+
# node.js
5+
- nodejs_version: "0.10"
6+
- nodejs_version: "0.12"
7+
- nodejs_version: "4"
8+
- nodejs_version: "5"
9+
10+
# Install scripts. (runs after repo cloning)
11+
install:
12+
# Get the latest stable version of Node.js or io.js
13+
- ps: Install-Product node $env:nodejs_version
14+
# install modules
15+
- npm config set loglevel warn
16+
- npm install --silent
17+
18+
# Post-install test scripts.
19+
test_script:
20+
# Output useful info for debugging.
21+
- node --version
22+
- npm --version
23+
# run tests
24+
- npm test
25+
26+
# Don't actually build.
27+
build: off

0 commit comments

Comments
 (0)