https://github.com/Microsoft/TypeScript
Raw File
Tip revision: eb6a1e030a9155aa25885587812aa19901dd41c0 authored by Andrew Casey on 11 August 2020, 00:56:40 UTC
Merge pull request #39984 from amcasey/pinned-release-3.6
Tip revision: eb6a1e0
.travis.yml
language: node_js

node_js:
  - '12'
  - '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