2017-02-10 15:24:56 -08:00
|
|
|
build: off
|
|
|
|
|
|
|
|
branches:
|
2018-08-09 15:16:20 -07:00
|
|
|
only:
|
|
|
|
- master
|
|
|
|
# Feature branches beginning with "feature."
|
|
|
|
- "/^feature\\..*/"
|
|
|
|
# Semantic version tags and legacy branches of the form "1.2.x".
|
|
|
|
- "/^\\d+\\.\\d+\\.(\\d+([+-].*)?|x)$/"
|
2017-02-10 15:24:56 -08:00
|
|
|
|
|
|
|
install:
|
2018-08-09 13:23:13 -07:00
|
|
|
- choco install dart-sdk
|
2017-02-10 15:24:56 -08:00
|
|
|
- refreshenv
|
|
|
|
- pub get
|
2019-04-23 11:45:49 -07:00
|
|
|
- ps: Install-Product node ''
|
2020-01-24 13:05:04 -08:00
|
|
|
- pub run grinder pkg-npm-dev
|
2019-04-23 11:45:49 -07:00
|
|
|
- npm install
|
2017-12-02 14:40:19 -08:00
|
|
|
|
2019-04-23 11:45:49 -07:00
|
|
|
# Only run Node tests on Windows because they won't work on Travis. See
|
|
|
|
# https://travis-ci.community/t/windows-instances-hanging-before-install/250/28.
|
|
|
|
test_script: pub run test -t node
|