https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 7c7712e0247c11fbcf93eb7a403a7bd27b964646 authored by rbuckton on 07 January 2017, 23:09:33 UTC
baselines, diff fallback
Tip revision: 7c7712e
.travis.yml
language: node_js

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

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.1

install:
  - npm uninstall typescript
  - npm uninstall tslint
  - npm install
  - npm update

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top