https://github.com/Microsoft/TypeScript
Raw File
Tip revision: f809eb396a59578be7f1c9ac0d1521dec0c6ab77 authored by Ron Buckton on 26 January 2017, 23:46:26 UTC
[WIP] extractPrinter
Tip revision: f809eb3
.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