Run-level scoring
Every cypress run emits a score. Fail the CI job when the score drops below a threshold you set — no Dashboard Service required.
ReleaseQA for Cypress
Drop-in Cypress plugin that ships every run to ReleaseQA — quality score, flake detection, and PR verdicts for your e2e suite.
Install
$ npm i -D @releaseqa/reporter-cypress// cypress.config.ts
import { defineConfig } from "cypress";
import releaseqa from "@releaseqa/reporter-cypress";
export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
releaseqa(on, config, {
apiKey: process.env.RELEASEQA_API_KEY,
project: "web",
});
return config;
},
},
});Set RELEASEQA_API_KEY in your CI secrets and push. First run appears in under 2 minutes.
Built for Cypress
Every cypress run emits a score. Fail the CI job when the score drops below a threshold you set — no Dashboard Service required.
Cypress retries are first-class: we track the underlying pass rate, not the final green.
Merges results across parallel machines via your CI's build ID. No flake duplication.
You keep Cypress Cloud for trace viewing; ReleaseQA sits alongside for quality scoring and PR verdicts.
Frequently asked
Free forever tier · No credit card · Cancel anytime.