https://github.com/Microsoft/TypeScript
Raw File
Tip revision: e6275ff51b4dd49faee638008feb8f2b42350689 authored by Anders Hejlsberg on 25 August 2017, 21:19:14 UTC
Accept new baselines
Tip revision: e6275ff
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '6'
  - '4'

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.5

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top