https://github.com/Microsoft/TypeScript
Raw File
Tip revision: dbf69b7873367377ee2fae4eea198074a6f6f7c6 authored by Mohamed Hegazy on 03 November 2016, 21:51:12 UTC
Update LKG
Tip revision: dbf69b7
.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
  - release-2.0.5

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top