https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 9482233c2276aee8fc4984ded4e89d7c89e16644 authored by Mohamed Hegazy on 22 September 2016, 23:22:40 UTC
Merge branch 'release-2.0.5' into gulpbuild
Tip revision: 9482233
.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