https://github.com/Microsoft/TypeScript
Raw File
Tip revision: a1eda3c23d0adf43db5b72621b61c2b91f460aa2 authored by Andy on 15 August 2016, 15:42:11 UTC
Merge pull request #10341 from Microsoft/runtests_browser_response_code
Tip revision: a1eda3c
.travis.yml
language: node_js

node_js:
  - 'stable'
  - '4'
  - '0.10'

sudo: false

env:
  - workerCount=3

matrix:
  fast_finish: true
  include:
  - os: osx
    node_js: stable
    osx_image: xcode7.3
    env: workerCount=2
  allow_failures:
  - os: osx

branches:
  only:
  - master
  - transforms

install:
  - npm uninstall typescript
  - npm uninstall tslint
  - npm install
  - npm update

cache:
  directories:
    - node_modules

git:
  depth: 1
back to top