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.
grunt-contrib-jasmine/appveyor.yml

38 lines
755 B

10 years ago
# AppVeyor file
10 years ago
# http://www.appveyor.com/docs/appveyor-yml
10 years ago
# Build version format
10 years ago
version: "{build}"
10 years ago
clone_depth: 10
# Fix line endings on Windows
10 years ago
init:
10 years ago
- git config --global core.autocrlf true
10 years ago
10 years ago
# What combinations to test
10 years ago
environment:
matrix:
- nodejs_version: 1
10 years ago
- nodejs_version: 0.12
10 years ago
- nodejs_version: 0.10
install:
10 years ago
- ps: Install-Product node $env:nodejs_version
10 years ago
- npm install -g grunt-cli
- npm install
build: off
test_script:
10 years ago
- node --version && npm --version
- npm test
matrix:
fast_finish: true
cache:
- '%APPDATA%\npm\node_modules -> package.json' # global npm modules
- '%APPDATA%\npm-cache -> package.json' # npm cache
- 'node_modules -> package.json' # local npm modules