Add a single line to your CI pipeline to run Check Studio tests on every pull request.
Check Studio integrates with any CI platform via a single CLI command or a pre-built action/plugin. This guide shows the fastest path for each major platform.
GitHub Actions
- name: Run Check Studio
run: npx @checkstudio/cli run --parallel=4yamlGitLab CI
test:
script:
- npm install -g @checkstudio/cli
- checkstudio run --parallel=4yamlJenkins
stage('Test') {
steps {
sh 'checkstudio run --parallel=4'
}
}groovyPro tip
Use --parallel=N to auto-shard tests across N workers. Check Studio automatically balances by test duration history.
Was this article helpful?
Still have questions?
Our support team is here to help. Reach out directly or search the docs.