npm-run-batch
Version:
npm run-script helper that allows running a bunch of run-scripts - in series or parallel!
20 lines (17 loc) • 434 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
- appveyor-retry yarn install
# Post-install test scripts.
build_script:
- node --version
- npm --version
- npm test