mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
607 B
32 lines
607 B
# http://www.appveyor.com/docs/appveyor-yml
|
|
|
|
version: "{build}"
|
|
|
|
clone_depth: 10
|
|
|
|
init:
|
|
- git config --global core.autocrlf false
|
|
|
|
environment:
|
|
matrix:
|
|
# node.js
|
|
- nodejs_version: 0.12
|
|
- nodejs_version: 4
|
|
- nodejs_version: 6
|
|
|
|
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
|
|
|