https://github.com/Microsoft/TypeScript
Raw File
Tip revision: ca93b24e2b24e8c92989ac2aa98a3205e344634e authored by Daniel Rosenwasser on 17 November 2020, 21:49:19 UTC
Revert "Don't relate unmatched parameter positions in signatures (#41308)"
Tip revision: ca93b24
.travis.yml
language: node_js

node_js:
  - 'node'
  - '12'
  - '10'

env:
  - workerCount=3 timeout=600000

matrix:
  fast_finish: true

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

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

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top