Skip to content

Commit 378d34c

Browse files
committed
ci: Add appveyor
1 parent 22a43a5 commit 378d34c

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+
environment:
2+
matrix:
3+
- nodejs_version: "10"
4+
- nodejs_version: "9"
5+
- nodejs_version: "8"
6+
- nodejs_version: "6"
7+
- nodejs_version: "4"
8+
- nodejs_version: "0.12"
9+
- nodejs_version: "0.10"
10+
11+
# Install scripts. (runs after repo cloning)
12+
install:
13+
# Get the latest stable version of Node.js or io.js
14+
- ps: Install-Product node $env:nodejs_version
15+
# install modules
16+
- npm install
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)