IntegrationGitHub Actions

Molar — autonomous QA testing platform

Molar in GitHub Actions

Short answer: Molar integrates with GitHub Actions via the CLI and GitHub App. Run npx molar-agent init, author scenarios against your preview URL, then molar-agent ci install to add a workflow that posts a required check — blocking merges when a critical-path scenario fails, with a full trace attached.

01 — OverviewPR gating with autonomous tests

Traditional CI runs the same brittle suite on every PR. Molar reads recent diffs, maps affected flows, and runs critical-path checks against stateful clones of Stripe, email, and storage — so checkout and signup tests never touch production services.

02 — StepsWire-up in minutes

  1. Install: npx molar-agent init in your repo root.
  2. Scan: molar-agent scan https://staging.your-app.com — scenarios land as plain-English markdown in your repo.
  3. Run locally: molar-agent run scenarios/checkout.molar.md
  4. CI: molar-agent ci install — adds the GitHub Actions workflow and App check.

See the full quickstart for environment variables and monorepo notes.

03 — ChecksWhat developers see on PRs

Failed runs surface the exact scenario, git diff correlation, and a replayable trace (DOM, network, console, clone activity). Confirmed regressions can open a fix PR via Mender. Passing runs unblock merge like any required GitHub check.

Back to landing