https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 9746252b92e4a0d986e7b2acc93ef385f7b4cf7f authored by Daniel Rosenwasser on 06 February 2019, 02:16:06 UTC
Move the line back to the bottom.
Tip revision: 9746252
.travis.yml
language: node_js

node_js:
  - 'node'
  - '10'
  - '6'

sudo: false

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