https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 4f65a2885e000c27e5f079171d440797d7307b97 authored by Mohamed Hegazy on 19 September 2016, 18:51:22 UTC
Update LKG
Tip revision: 4f65a28
.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