Update all dependencies, migrate from tslint (deprecated) to typescript-eslint, and add support for cspell. BREAKING CHANGE: migrated from tslint (deprecated) to eslint.
25 lines
371 B
YAML
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
|