Connect to CI/CD

5 min readLast updated 2026-04-25

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=4
yaml

GitLab CI

test:
  script:
    - npm install -g @checkstudio/cli
    - checkstudio run --parallel=4
yaml

Jenkins

stage('Test') {
  steps {
    sh 'checkstudio run --parallel=4'
  }
}
groovy

Pro 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.