https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 0026225e783e6d84d8e7a66ce18c5031b8ac60a0 authored by Daniel Rosenwasser on 05 February 2020, 21:06:35 UTC
Update LKG.
Tip revision: 0026225
.travis.yml
language: node_js

node_js:
  - 'node'
  - '10'
  - '8'

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

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

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top