mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-17 13:15:00 +02:00
22 lines
425 B
YAML
22 lines
425 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "10.0"
|
|
cache:
|
|
- node_modules
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- node -v
|
|
- npm -v
|
|
- npm cache verify
|
|
- rm -rf node_modules/
|
|
- if exist node_modules npm prune
|
|
- if exist node_modules npm rebuild
|
|
- npm install
|
|
- npm install jest-cli@25 --save-dev
|
|
build: off
|
|
test_script:
|
|
- node --version
|
|
- npm --version
|
|
- npm test
|
|
version: "{build}"
|