File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 1+ # http://www.appveyor.com/docs/appveyor-yml
2+ # http://www.appveyor.com/docs/lang/nodejs-iojs
3+
4+ environment :
5+ matrix :
6+ # node.js
7+ - nodejs_version : " 0.10"
8+ - nodejs_version : " 0.12"
9+ - nodejs_version : " 4"
10+ - nodejs_version : " 5"
11+ - nodejs_version : " 6"
12+
13+ install :
14+ - ps : Install-Product node $env:nodejs_version
15+ - npm install
16+
17+ test_script :
18+ - node --version
19+ - npm --version
20+ - cmd : npm test
21+
22+ build : off
23+
24+ # build version format
25+ version : " {build}"
Original file line number Diff line number Diff line change 3131 "should" : " ^7.0.0"
3232 },
3333 "scripts" : {
34- "lint" : " eslint . && jscs * .js lib/ test/" ,
34+ "lint" : " eslint . && jscs index .js lib/ test/" ,
3535 "pretest" : " npm run lint" ,
3636 "test" : " mocha" ,
3737 "coveralls" : " istanbul cover _mocha && istanbul-coveralls" ,
You can’t perform that action at this time.
0 commit comments