25 linhas
324 B
YAML
25 linhas
324 B
YAML
version: "{build}"
|
|
|
|
clone_depth: 1
|
|
|
|
environment:
|
|
matrix:
|
|
- nodejs_version: 14
|
|
- nodejs_version: 16
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install -g grunt-cli
|
|
- npm install
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
- grunt jshint jscs nodeunit
|
|
|
|
cache:
|
|
- node_modules
|
|
|
|
matrix:
|
|
fast_finish: true
|