https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 5aa2eb744a3cffe570e54a4d382d67013284742b authored by Daniel Rosenwasser on 18 August 2020, 22:51:48 UTC
Add 'insiders'.
Tip revision: 5aa2eb7
.travis.yml
language: node_js

node_js:
  - '14'
  - '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