TypeScript/.travis.yml
Nathan Shively-Sanders ad7702f15a
Disable node 6 (#29832)
* Disable node 6

It exits LTS in a couple of months, and doesn't support async/await,
meaning that it blocks us from switching Travis to use gulp instead of
jake.

* Swap in node 8 for node 6
2019-02-13 12:57:35 -08:00

32 lines
344 B
YAML

language: node_js
node_js:
- 'node'
- '10'
- '8'
sudo: false
env:
- workerCount=3 timeout=600000
matrix:
fast_finish: true
branches:
only:
- master
- /^release-.*/
install:
- npm uninstall typescript --no-save
- npm uninstall tslint --no-save
- npm install
cache:
directories:
- node_modules
git:
depth: 1