https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 30734a05e2287250587ffb7b8f4a7a20af89de10 authored by Daniel Rosenwasser on 10 February 2021, 20:15:13 UTC
Pin Node for Volta, bump version to 3.7.7, update LKG
Tip revision: 30734a0
.travis.yml
language: node_js

node_js:
  - '12'
  - '10'
  - '8'

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