Skip to content

Commit 08bd31e

Browse files
committed
Adding an appveyor build configuration
1 parent 86343ae commit 08bd31e

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+
# Test against this version of Node.js
2+
environment:
3+
matrix:
4+
# node.js
5+
- nodejs_version: "6"
6+
7+
# Install scripts. (runs after repo cloning)
8+
install:
9+
# Get the latest stable version of Node.js or io.js
10+
- ps: Install-Product node $env:nodejs_version
11+
# install modules
12+
- npm install
13+
14+
# Post-install test scripts
15+
test_script:
16+
# Output useful info for debugging
17+
- node --version
18+
- npm --version
19+
# run tests
20+
- npm test
21+
22+
# Don't actually build
23+
build: off

0 commit comments

Comments
 (0)