https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 4e2e7602e22d5f9db3a97e4e85ab9c4a4f971679 authored by Anders Hejlsberg on 26 August 2016, 22:52:15 UTC
Accept new baselines
Tip revision: 4e2e760
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '4'
  - '0.10'

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true
  include:
  - os: osx
    node_js: stable
    osx_image: xcode7.3
    env: workerCount=2
  allow_failures:
  - os: osx

branches:
  only:
  - master
  - transforms

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top