@steve.clogic/stepci
v2.8.205
Published
Automated API Testing and Quality Assurance
Readme
Note We just announced Support Plan for Step CI
Important For users migrating from Postman and Insomnia, see issues #29 and #30 respectively
Welcome
Step CI is an open-source API Quality Assurance framework
- Language-agnostic. Configure easily using YAML, JSON or JavaScript
- REST, GraphQL, gRPC, tRPC, SOAP. Test different API types in one workflow
- Self-hosted. Test services on your network, locally and CI/CD
- Integrated. Play nicely with others
Get started
Install the CLI
Using Node.js
npm install -g @steve.clogic/stepciNote: Make sure you're using the LTS version of Node.js
Using Homebrew
brew install stepciCreate example workflow
workflow.yml
version: "1.1" name: Status Check env: host: example.com tests: example: steps: - name: GET request http: url: https://${{env.host}} method: GET check: status: /^20/Note: You can also also use JSON format to configure your workflow
Run the workflow
stepci run workflow.ymlPASS example Tests: 0 failed, 1 passed, 1 total Steps: 0 failed, 1 passed, 1 total Time: 0.559s, estimated 1s Workflow passed after 0.559s
Fork Install
Install the forked CLI package:
npm install -g @steve.clogic/stepciThe installed command remains stepci.
Verify the forked packages
Verify the global install resolves the scoped CLI and runner packages:
npm ls -g @steve.clogic/stepci @steve.clogic/runnerMinimal validation workflow
Use a small workflow to confirm the forked CLI runs successfully:
version: "1.1"
name: Status Check
env:
host: example.com
tests:
example:
steps:
- name: GET request
http:
url: https://${{env.host}}
method: GET
check:
status: /^20/Run it with:
stepci run workflow.ymlDocumentation
Documentation is available on docs.stepci.com
Examples
You can find example workflows under examples/
Community
Join our community on Discord and GitHub
Contributing
As an open-source project, we welcome contributions from the community. If you are experiencing any bugs or want to add some improvements, please feel free to open an issue or pull request
Support Plan
Get Pro-level support with SLA, onboarding, prioritized feature-requests and bugfixes.
Privacy
By default, the CLI collects anonymous usage data, which includes:
- Unique user ID
- OS Name
- Node Version
- CLI Version
- Command (
stepci init,stepci run,stepci generate) - Environment (Local, Docker, CI/CD)
Note The usage analytics can be disabled by setting
STEPCI_DISABLE_ANALYTICSenvironment variable
License
The source code is distributed under Mozilla Public License terms
