dart-sass/appveyor.yml
2018-05-03 17:37:37 -07:00

33 lines
678 B
YAML

build: off
branches:
only: [master, /^features\..*]
# Don't run specs because sass-spec doesn't support Windows. They're also
# supposed to be platform-independent.
environment:
matrix:
- {TASK: tests, NODE: false}
- {TASK: tests, NODE: true}
install:
- choco install --pre dart-sdk
- refreshenv
- pub get
- ps: >-
If ($env:NODE -eq "true") {
Install-Product node ''
pub run grinder npm_package
}
# Run this as CMD because npm's stderr will cause PowerShell to think it failed.
- IF "%NODE%"=="true" npm install
test_script:
- ps: >-
If ($env:NODE -eq "true") {
pub run test -t node
} Else {
pub run test -p vm -x node
}