2017-02-11 00:24:56 +01:00
|
|
|
build: off
|
|
|
|
|
|
|
|
branches:
|
2018-08-10 00:16:20 +02: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-11 00:24:56 +01:00
|
|
|
|
|
|
|
install:
|
2018-08-09 22:23:13 +02:00
|
|
|
- choco install dart-sdk
|
2017-02-11 00:24:56 +01:00
|
|
|
- refreshenv
|
|
|
|
- pub get
|
2019-04-23 20:45:49 +02:00
|
|
|
- ps: Install-Product node ''
|
|
|
|
- pub run grinder npm-package
|
|
|
|
- npm install
|
2017-12-02 23:40:19 +01:00
|
|
|
|
2019-04-23 20:45:49 +02: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
|