1
0
mirror of synced 2025-11-08 12:57:47 +00:00
Files
typescript-starter/appveyor.yml
2018-03-20 22:20:51 -04:00

23 lines
365 B
YAML

environment:
matrix:
- nodejs_version: 8
- nodejs_version: 9
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
- npx nyc report --reporter=lcov | npx codecov
- npm run cov:check
build: off
deploy: off