Skip to content

Commit 3ccf9cd

Browse files
committed
Add continuous integration on Windows through AppVeyor
Only test on Node 4 (latest LTS), contrary to Travis which runs Node 4 and 6.
1 parent cae65bc commit 3ccf9cd

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

appveyor.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See https://www.appveyor.com/docs/lang/nodejs-iojs
2+
environment:
3+
nodejs_version: "4"
4+
5+
install:
6+
- ps: Install-Product node $env:nodejs_version
7+
- node --version
8+
- npm --version
9+
- npm install
10+
11+
test_script:
12+
- npm test
13+
14+
build: off
15+

0 commit comments

Comments
 (0)