https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 74f219ed1d42d99d963ba6204474b8b9a6636237 authored by TypeScript Bot on 26 March 2020, 20:56:29 UTC
🤖 Pick PR #37510 (Fix import order) into release-3.9 (#37628)
Tip revision: 74f219e
.travis.yml
language: node_js

node_js:
  - 'node'
  - '10'
  - '8'

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

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

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top