mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-11 19:04:30 +00:00
21 lines
298 B
YAML
21 lines
298 B
YAML
version: "{build}"
|
|
|
|
shallow_clone: true
|
|
|
|
init:
|
|
- git config --global core.autocrlf false
|
|
|
|
build: off
|
|
|
|
environment:
|
|
matrix:
|
|
# node.js
|
|
- nodejs_version: 11
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm ci
|
|
|
|
test_script:
|
|
- node --version && npm --version
|
|
- npm test |