Skip to content

Commit d15efda

Browse files
committed
added appveyor config
1 parent 59b0c70 commit d15efda

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

appveyor.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# appveyor file
2+
# http://www.appveyor.com/docs/appveyor-yml
3+
4+
branches:
5+
only:
6+
- master
7+
8+
environment:
9+
matrix:
10+
- nodejs_version: 4
11+
- nodejs_version: 5
12+
- nodejs_version: 6
13+
- nodejs_version: 7
14+
- nodejs_version: 8
15+
16+
version: "{build}"
17+
build: off
18+
deploy: off
19+
matrix:
20+
fast_finish: true
21+
22+
install:
23+
- ps: Install-Product node $env:nodejs_version
24+
- npm install
25+
26+
test_script:
27+
- node --version
28+
- npm --version
29+
- npm test

0 commit comments

Comments
 (0)