js-beautify/appveyor.yml
2018-07-10 15:02:49 -07:00

38 lines
784 B
YAML

version: 1.6+{build}
nuget:
disable_publish_on_pr: true
deploy: off
# Test against this version of Node.js
environment:
global:
nodejs_version: "6"
matrix:
- PYTHON: "C:\\Python27"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
# 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
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;c:\\MinGW\\bin;%PATH%"
- pip --version
- copy c:\MinGW\bin\mingw32-make.exe c:\MinGW\bin\make.exe
- make --version
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
- python --version
# run tests
- bash -c "make ci"
# Don't actually build.
build: off