https://github.com/Microsoft/TypeScript
Raw File
Tip revision: f520c51aa8f1b97350bac19e311906255478d402 authored by Ron Buckton on 27 September 2017, 18:55:18 UTC
Updated baselines for tsconfig tests
Tip revision: f520c51
.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