https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 7c397a5ab1f0f4e9d52d797ca3d48b0e8162f594 authored by Mine Starks on 05 January 2021, 01:03:49 UTC
Bump version to 3.1.7 and LKG
Tip revision: 7c397a5
.travis.yml
language: node_js

node_js:
  - '10'
  - '8'

sudo: false

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

branches:
  only:
  - master
  - release-2.7
  - release-2.8
  - release-2.9
  - release-3.0
  - release-3.1

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top