imagemagick-cli
Version:
Access the ImageMagick CLI tools from Node. Cross-platform, with support for ImageMagick 6 and 7.
18 lines (14 loc) • 404 B
YAML
environment:
nodejs_version: "6"
# 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
- npm install
# Post-install test scripts.
test_script:
- npm run lint
- npm run test # don't run cov, circle does that instead
- ps: test\\windows\\test-windows.ps1
# Don't actually build.
build: off