https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 0a506ac1014442a98eb8db8428db227da139f2d1 authored by Anders Hejlsberg on 26 August 2020, 03:20:24 UTC
Backing off yet more
Tip revision: 0a506ac
.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