https://github.com/Microsoft/TypeScript
Raw File
Tip revision: aace53f7d71af11e4b89dd074a1657964a22d0b4 authored by TypeScript Bot on 10 February 2021, 00:22:08 UTC
Bump version to 4.1.5 and LKG
Tip revision: aace53f
.travis.yml
language: node_js

node_js:
  - 'node'
  - '12'
  - '10'

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

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

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top