mariasql
Version:
A node.js binding to MariaDB's non-blocking (MySQL-compatible) client library
37 lines (30 loc) • 824 B
YAML
# http://www.appveyor.com/docs/appveyor-yml
services:
- mysql
environment:
DB_PASS: Password12!
# Test against these versions of Node.js.
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node
- ps: Install-Product node $env:nodejs_version
# Typical npm stuff.
- IF %nodejs_version% LSS 1 npm -g install npm
- IF %nodejs_version% LSS 1 set PATH=%APPDATA%\npm;%PATH%
- npm install
# 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
# Set build version format here instead of in the admin panel.
version: "{build}"