https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 99e4865d0802104a1315ee3a8612ac501be8e298 authored by Ryan Cavanaugh on 27 March 2019, 20:08:36 UTC
LKG update for 3.4.1
Tip revision: 99e4865
.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 uninstall tslint --no-save
  - npm install

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top