https://github.com/Microsoft/TypeScript
Raw File
Tip revision: a3b8ad22ebd56deec43eb07b193ed832d0a146b7 authored by Daniel Rosenwasser on 02 February 2021, 02:01:08 UTC
Accepted baselines.
Tip revision: a3b8ad2
.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