mirror of
https://github.com/danbulant/pngjs
synced 2026-06-16 13:01:14 +00:00
28 lines
370 B
YAML
28 lines
370 B
YAML
version: "{build}"
|
|
|
|
clone_depth: 10
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: "10"
|
|
- nodejs_version: "12"
|
|
|
|
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
|
|
|
|
branches:
|
|
only:
|
|
- master
|