https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 16be97cd98c7b31844723f3c8f75e26508dc3cac authored by Anders Hejlsberg on 14 September 2018, 21:07:34 UTC
Accept new baselines
Tip revision: 16be97c
.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