https://github.com/Microsoft/TypeScript
Raw File
Tip revision: a2c5c344756be0707c016add97f3118a373eca68 authored by Sheetal Nandi on 29 August 2018, 23:18:43 UTC
Merge pull request #26747 from Microsoft/addShortWatch30
Tip revision: a2c5c34
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '8'
  - '6'

sudo: false

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.7
  - release-2.8
  - release-2.9
  - release-3.0

install:
  - npm uninstall typescript --no-save
  - npm uninstall tslint --no-save
  - npm install

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top