https://github.com/Microsoft/TypeScript
Raw File
Tip revision: cd14ca2ea82603e07e73bc06debebfa23eaa8bb6 authored by Ron Buckton on 11 January 2017, 22:29:36 UTC
Update promise definition overloads for then/catch
Tip revision: cd14ca2
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '6'
  - '4'

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.1

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top