GitHub Actions

4 min readLast updated 2026-04-20

Add Check Studio to your GitHub Actions workflow in under 60 seconds.

The Check Studio GitHub Action runs tests, posts results as PR comments, and updates commit status checks automatically.

Minimal workflow

name: Tests
on: [push, pull_request]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: 20
      - run: npm ci
      - uses: checkstudio/action@v1
        with:
          api-key: ${{ secrets.CHECKSTUDIO_API_KEY }}
          parallel: 4
yaml

PR comments

The action posts a summary comment on every PR showing pass/fail counts, flaky tests, and a link to the full dashboard.

Caching

Enable browser binary caching to speed up installs: cache-browsers: true in the action inputs.

Was this article helpful?

Still have questions?

Our support team is here to help. Reach out directly or search the docs.