ts-jest
Version:
A preprocessor with sourcemap support to help use Typescript with Jest
34 lines (27 loc) • 670 B
YAML
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
# build version format
version: "{build}"
# fix lineendings in Windows
init:
- git config --global core.autocrlf input
- git config --system core.longpaths true
# what combinations to test
environment:
matrix:
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 7
# get the latest stable version of Node 0.STABLE.latest
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- set AppVeyor=true
- npm i -g npm@latest
- set PATH=%APPDATA%\npm;%PATH%
- npm install
build: off
test_script:
- node --version
- npm --version
- cmd: npm test --no-color