mirror of
https://github.com/danbulant/pngjs
synced 2026-05-26 13:21:59 +00:00
24 lines
348 B
YAML
24 lines
348 B
YAML
version: "{build}"
|
|
|
|
clone_depth: 10
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 0.12
|
|
- nodejs_version: 1.1
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- node --version && npm --version
|
|
- npm test
|
|
|
|
cache:
|
|
- node_modules # local npm modules
|
|
|
|
matrix:
|
|
fast_finish: true
|