Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
chore(ci): Added appveyor config
Browse files Browse the repository at this point in the history
  • Loading branch information
adriantoine committed Sep 8, 2016
1 parent 13911fb commit 21b9537
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
19 changes: 19 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
environment:
matrix:
- nodejs_version: '6'
- nodejs_version: '4'
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm@latest || (timeout 30 && npm install -g npm@latest)
- set PATH=%APPDATA%\npm;%PATH%
- npm install || (timeout 30 && npm install)
matrix:
fast_finish: true
build: off
version: '{build}'
shallow_clone: true
clone_depth: 1
test_script:
- node --version
- npm --version
- npm run test:win || (timeout 30 && npm run test:win)
3 changes: 0 additions & 3 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
codecov:
branch: master

coverage:
range: "90...100"
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"build": "babel src -d build",
"dev": "watch 'npm run build' src/",
"test": "npm run test:lint && npm run test:plugin",
"test:win": "ava",
"test:lint": "eslint src/ test/",
"test:plugin": "eslint src/ test/ && nyc --cache --reporter=text ava",
"test:ava": "cd examples/ava; rm -rf node_modules; npm it",
Expand Down

0 comments on commit 21b9537

Please # to comment.