1
0
mirror of synced 2025-11-08 04:48:04 +00:00
Files
typescript-starter/appveyor.yml
Jason Dreyzehner 390041b510 feat: TS v4, tslint -> eslint, add cspell support (#240)
Update all dependencies, migrate from tslint (deprecated) to typescript-eslint, and add support for
cspell.

BREAKING CHANGE: migrated from tslint (deprecated) to eslint.
2020-09-01 19:13:25 -04:00

25 lines
371 B
YAML

environment:
matrix:
- nodejs_version: '10'
- nodejs_version: '12'
- nodejs_version: '14'
version: '{build}'
cache:
- node_modules -> package.json
install:
- ps: Install-Product node $env:nodejs_version
- node --version
- npm --version
- npm install
test_script:
- npm test
- npm run cov:send
- npm run cov:check
build: off
deploy: off