https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 271316cfe9a6ce28c2040ecbe449eb705b15fb83 authored by Andrew Casey on 11 August 2020, 00:04:18 UTC
Merge pull request #39981 from amcasey/pinned-release-3.4
Tip revision: 271316c
.travis.yml
language: node_js

node_js:
  - '10'
  - '8'

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

branches:
  only:
  - master
  - /^release-.*/

install:
  - npm uninstall typescript --no-save
  - npm uninstall tslint --no-save
  - npm ci

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top