@gasbuddy/configured-prometheus-client
Version:
A configuration driven prometheus client
32 lines (25 loc) • 531 B
YAML
box: node:8
services:
- rabbitmq
build:
steps:
- npm-install
- script:
name: lint
code: npm run lint
- script:
name: test with coverage
code: |
npm run --silent ci-test
npm run --silent ci-cover
- script:
name: build
code: npm run build
deploy:
steps:
- script:
name: npm publish
code: |
npm config set unsafe-perm true
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
npm publish . --tag latest