dart-sass/appveyor.yml
Natalie Weizenbaum d6dc8c9d15
Pin Dart to 2.0.0-dev.63 (#374)
Rolling forward is blocked on dart-lang/sdk#33574.
2018-06-21 17:19:38 -07:00

33 lines
703 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 --version 2.0.0.63-dev-0
- 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
}