1
0
mirror of synced 2025-11-08 21:07:23 +00:00
Files
typescript-starter/appveyor.yml
2020-09-01 21:04:06 -04:00

25 lines
375 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 x64
- node --version
- npm --version
- npm install
test_script:
- npm test
- npm run cov:send
- npm run cov:check
build: off
deploy: off