ci-integration

Integrating test coverage and quality gates into CI pipelines.

Content Preview
# CI/CD Integration Guide

Integrating test coverage and quality gates into CI pipelines.

---

## Table of Contents

- [Coverage in CI](#coverage-in-ci)
- [GitHub Actions Examples](#github-actions-examples)
- [Quality Gates](#quality-gates)
- [Trend Tracking](#trend-tracking)

---

## Coverage in CI

### Coverage Report Flow

1. Run tests with coverage enabled
2. Generate report in machine-readable format (LCOV, JSON, XML)
3. Parse report for threshold validation
4. Upload to coverage service (
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/ci-integration.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering-team/tdd-guide/references/ci-integration.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering-team/tdd-guide/references/ci-integration.md

Related Skills