https://github.com/Microsoft/TypeScript
Raw File
Tip revision: d5b4ad8c475f055c3ecbd78fa1249bac261be00f authored by Daniel Rosenwasser on 09 October 2020, 23:43:59 UTC
Accepted baselines.
Tip revision: d5b4ad8
.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