Skip to content

Commit bcb63be

Browse files
committed
add appveyor config
1 parent 2624bfd commit bcb63be

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

appveyor.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# http://www.appveyor.com/docs/appveyor-yml
2+
3+
version: "{build}"
4+
5+
clone_depth: 10
6+
7+
init:
8+
- git config --global core.autocrlf false
9+
10+
environment:
11+
matrix:
12+
# node.js
13+
- nodejs_version: stable
14+
15+
install:
16+
- ps: Install-Product node $env:nodejs_version
17+
- npm install
18+
19+
build: off
20+
21+
test_script:
22+
- node --version && npm --version
23+
- npm test
24+
25+
matrix:
26+
fast_finish: false
27+
28+
# cache:
29+
# - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache
30+
# - node_modules -> package.json # local npm modules

0 commit comments

Comments
 (0)