Skip to content

Commit c9458a7

Browse files
committed
Playing with appveyor
1 parent f573321 commit c9458a7

3 files changed

Lines changed: 21 additions & 1 deletion

File tree

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
.travis.yml
1111

1212
Makefile
13+
appveyor.yml
1314
sftp-config.json
1415

1516
coverage/

appveyor.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: '5'
4+
- nodejs_version: '4'
5+
- nodejs_version: '0.12'
6+
- nodejs_version: '0.10'
7+
install:
8+
- ps: Install-Product node :nodejs_version
9+
- set CI=true
10+
- npm install
11+
matrix:
12+
fast_finish: true
13+
build: off
14+
version: '{build}'
15+
shallow_clone: true
16+
clone_depth: 1
17+
test_script:
18+
- npm run test

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"browser": "./lib/browser",
1212
"scripts": {
1313
"pretest": "rimraf coverage test/tmp",
14-
"test": "istanbul cover --report none test/run.js && istanbul report",
14+
"test": "istanbul cover --report none test/run.js",
15+
"posttest": "istanbul report",
1516
"lint": "eslint lib/*.js test/*.js test/**/*.js",
1617
"predebug": "rimraf coverage test/tmp",
1718
"debug": "verbose=1 ./test/run.js",

0 commit comments

Comments
 (0)