16 lines
219 B
YAML
16 lines
219 B
YAML
version: "{build}"
|
|
|
|
environment:
|
|
global:
|
|
nodejs_version: "LTS"
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- node --version
|
|
- npm --version
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- npm test
|