rump-styles
Version:
Rump piece for building CSS
30 lines (24 loc) • 504 B
YAML
version: "{build}"
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "3"
install:
- ps: Install-Product node $env:nodejs_version
- ps: >-
if($env:nodejs_version -eq "0.10")
{
npm install -g npm@next
$env:Path = "${env:Appdata}\npm;${env:Path}"
}
- npm install
- node --version
- npm --version
test_script:
- npm test
- npm run codecov
build: off
matrix:
allow_failures:
- nodejs_version: "3"