ci-test-pipeline

Automate CI/CD pipeline setup with parallel test runs and coverage reporting.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/OM-bit-hub/daily_tracker --skill ci-test-pipeline
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: ci-test-pipeline
Source: https://github.com/OM-bit-hub/daily_tracker/tree/main/.agents/skills/automation-qa/ci-test-pipeline
Command: npx skills add https://github.com/OM-bit-hub/daily_tracker --skill ci-test-pipeline

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates the setup and maintenance of CI/CD pipelines for QA, enabling parallel test runs, flaky-test handling, artifact collection, and coverage reporting to speed up feedback cycles.

Core Features & Use Cases

  • Parallel test execution across unit, integration, and E2E suites
  • Flaky test detection, retry logic, and quarantine guidance
  • Artifact collection, test reporting, and PR coverage gates
  • Flexible pipeline architecture with migrations, seeds, and notifications

Quick Start

Configure the project with this skill to wire a CI workflow that runs lint, unit tests, integration tests, and E2E tests in parallel, collects artifacts on failure, and notifies the team of regressions.

Frequently Asked Questions about ci-test-pipeline

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run parallel tests across unit, integration, and E2E suites in a CI pipeline?

You can run parallel tests by configuring a CI workflow that orchestrates parallel jobs across unit, integration, and E2E suites using deterministic splits and test sharding to speed up feedback cycles.

How do I handle flaky tests in CI/CD pipelines?

Flaky test handling in CI/CD pipelines is managed through automated detection, retry logic, and quarantine guidance to isolate unreliable tests and maintain pipeline stability.

What is the best way to add PR coverage gates and artifact collection to QA automation?

PR coverage gates and artifact collection are implemented in QA automation by configuring pipelines to collect test artifacts on failure, generate detailed coverage reports, and block pull request merges based on coverage thresholds.

Does this CI test pipeline approach support multi-stage test suites with migrations and seeds?

Yes, the CI test pipeline approach supports multi-stage test suites by integrating database migrations and seeds into the flexible pipeline architecture before running tests, ensuring consistent environments.

Why use deterministic dependency handling like npm ci in a CI pipeline?

Deterministic dependency handling using npm ci in a CI pipeline ensures reproducible builds by installing exact package versions from lockfiles, preventing unexpected test failures caused by dependency drift.