https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 69972a3c792bb2d85bb6a8296d653e588e13db71 authored by TypeScript Bot on 17 September 2020, 05:45:52 UTC
Merge remote-tracking branch 'origin/master' into release-4.1
Tip revision: 69972a3
.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