https://github.com/Microsoft/TypeScript
Raw File
Tip revision: c76c973d2ddd9048932426479b5855d68779a27a authored by Andrew Casey on 11 August 2020, 03:21:51 UTC
Merge pull request #39987 from amcasey/pinned-release-3.8
Tip revision: c76c973
.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