https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 4f30b405e9564e4f105cd3ef279af3c0dae814e8 authored by Daniel Rosenwasser on 29 August 2020, 07:51:56 UTC
Update baselines.
Tip revision: 4f30b40
.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