tslint-clean-code
Version:
TSLint rules for enforcing Clean Code
20 lines (16 loc) • 395 B
YAML
# Test against the latest version of this Node.js version
environment:
nodejs_version: "8"
install:
# Get the latest stable version of Node.js
- ps: Install-Product node $env:nodejs_version
- npm install -g grunt-cli
- npm install
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
# Don't actually build.
build: off