https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 76c94c5c1e16bf4f59069f5c9cb3cf4d71c78475 authored by Daniel Rosenwasser on 28 January 2019, 19:15:57 UTC
Update LKG.
Tip revision: 76c94c5
.travis.yml
language: node_js

node_js:
  - 'node'
  - '10'
  - '6'

sudo: false

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

branches:
  only:
  - master
  - /^release-.*/

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top