rpgmaker-linux/nwjs/packagefiles/tyranobuilder/node_modules/jsonfile/appveyor.yml
2024-07-01 20:36:56 +03:00

26 lines
548 B
YAML

# Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "10"
- nodejs_version: "12"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm config set loglevel warn
- npm install --silent
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
# Don't actually build.
build: off