mirror of
https://github.com/toddbluhm/env-cmd.git
synced 2025-12-08 18:23:33 +00:00
26 lines
379 B
YAML
26 lines
379 B
YAML
dist: bionic
|
|
|
|
os:
|
|
- linux
|
|
# - windows Can not use windows at this time as secrets are not supported yet
|
|
|
|
language: node_js
|
|
node_js:
|
|
- "8"
|
|
- "10"
|
|
- "12"
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
|
|
script:
|
|
- npm run lint
|
|
- npm run test-cover
|
|
|
|
after_script:
|
|
- npm run coveralls
|
|
|
|
notifications:
|
|
webhooks: https://coveralls.io/webhook?repo_token=COVERALLS_REPO_TOKEN
|