mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
1 changed files with 33 additions and 0 deletions
@ -0,0 +1,33 @@ |
|||||
|
# http://www.appveyor.com/docs/appveyor-yml |
||||
|
|
||||
|
version: "{build}" |
||||
|
|
||||
|
clone_depth: 10 |
||||
|
|
||||
|
init: |
||||
|
- git config --global core.autocrlf true |
||||
|
|
||||
|
environment: |
||||
|
matrix: |
||||
|
# node.js |
||||
|
- nodejs_version: 0.10 |
||||
|
- nodejs_version: 0.12 |
||||
|
# io.js |
||||
|
- nodejs_version: 1 |
||||
|
|
||||
|
install: |
||||
|
- ps: Install-Product node $env:nodejs_version |
||||
|
- npm install |
||||
|
|
||||
|
build: off |
||||
|
|
||||
|
test_script: |
||||
|
- node --version && npm --version |
||||
|
- npm test |
||||
|
|
||||
|
matrix: |
||||
|
fast_finish: false |
||||
|
|
||||
|
cache: |
||||
|
- C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache |
||||
|
- node_modules -> package.json # local npm modules |
Loading…
Reference in new issue