Clobbr CI integration examples
clobbr.app
This repository contains examples on how to integrate @clobbr/cli in various CIs.
In the CI of choice, make sure nodejs is available (recommended version: 14.x) and run checks with clobbr cli, for example:
npx @clobbr/cli run \
--url "https://api.github.com/zen" \
--checks mean=200 median=200 stdDev=50 q5=150 q50=200 q95=250 q99=300 pctOfSuccess=95
If any of the checks fail, the CI will fail.
Go to main documentation to see more
version: 2.1
orbs:
node: circleci/[email protected]
jobs:
build:
working_directory: ~/repo
docker:
- image: circleci/node:16.7.0
steps:
- checkout
- run:
name: Run clobbr
command: npx @clobbr/cli run -u "https://60698fbde1c2a10017544a73.mockapi.io" --checks mean=200 median=200 stdDev=50 q5=150 q50=200 q95=250 q99=300 pctOfSuccess=95
language: node_js
node_js:
- "16"
script: npx @clobbr/cli run -u "https://60698fbde1c2a10017544a73.mockapi.io" --checks mean=200 median=200 stdDev=50 q5=150 q50=200 q95=250 q99=300 pctOfSuccess=95
image: Ubuntu
environment:
nodejs_version: "16"
test_script:
- node --version
- npm --version
- npx @clobbr/cli run -u "https://60698fbde1c2a10017544a73.mockapi.io" --checks mean=200 median=200 stdDev=50 q5=150 q50=200 q95=250 q99=300 pctOfSuccess=95
build: off
Clobbr is a tool part of the Apihustle suite - a collection of tools to test, improve and get to know your API inside and out.