Add initial AppVeyor config
This commit is contained in:
parent
5cbc2abf61
commit
9fd625fb9b
1 changed files with 25 additions and 0 deletions
25
npm/appveyor.yml
Normal file
25
npm/appveyor.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
build: off
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- nodejs_version: "0.10"
|
||||
- nodejs_version: "0.12"
|
||||
- nodejs_version: "4"
|
||||
- nodejs_version: "5"
|
||||
- nodejs_version: "6"
|
||||
|
||||
skip_tags: true
|
||||
|
||||
install:
|
||||
- ps: Install-Product node $env:nodejs_version
|
||||
- npm install npm
|
||||
- .\node_modules\.bin\npm install
|
||||
|
||||
test_script:
|
||||
- node --version
|
||||
- .\node_modules\.bin\npm --version
|
||||
- .\node_modules\.bin\npm test
|
Loading…
Reference in a new issue