https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 3813fb1ebe6ce29aac22022171401373264c7b82 authored by Andrew Casey on 21 November 2017, 02:04:33 UTC
Merge pull request #20171 from RyanCavanaugh/fixTypingsInstallerAgain
Tip revision: 3813fb1
.travis.yml
language: node_js

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

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.5

install:
  - npm uninstall typescript --no-save
  - npm uninstall tslint --no-save
  - npm install

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top