https://github.com/Microsoft/TypeScript
Raw File
Tip revision: dad88fc53ef869fb7b80b2a172b73074cf74f8ef authored by Ron Buckton on 29 September 2020, 02:11:18 UTC
Add IteratorVoidReturnResult for optional 'value' when done
Tip revision: dad88fc
.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