Skip to content
Dashboard

Cookbook & Recipes

Copy-paste recipes to solve common CI pain points. Each recipe uses WarpFix + cheap/static tools for maximum value at minimal cost.

Stop Flaky Jest Tests from Blocking CI

Auto-detect flaky tests, quarantine them, and get fix suggestions — all without LLM tokens.

JestTestingFree
Easy5 min
Auto-Fix ESLint Errors Without LLM

Run eslint --fix in WarpFix sandbox to resolve style and lint issues at zero token cost.

ESLintLintingFree
Easy3 min
Catch Breaking npm Releases Before They Hit CI

Monitor dependencies for breaking changes, deprecations, and security issues proactively.

npmDependenciesFree
Easy2 min
Keep Terraform/Helm Charts Lint-Clean

Auto-validate IaC files with tflint, checkov, and helm lint — catch misconfigs before apply.

TerraformHelmIaC
Medium10 min
Find and Fill Test Coverage Gaps in PRs

Identify untested code paths in every PR and get concrete test suggestions.

CoverageTestingPro
Medium5 min
Run WarpFix Doctor in Your Terminal

Local CLI that queries CI history, diagnoses failures, and suggests fixes without touching GitHub.

CLILocalFree
Easy1 min
Stop Flaky Jest Tests from Blocking CI
Configuration
# .warpfix.yaml — Flaky Jest test management
version: 1

flaky_tests:
  enabled: true
  detection:
    min_runs: 10
    flake_threshold: 0.05
  strategy: quarantine
  auto_retry: 3
  report_to_pr: true

repair:
  auto_fix: true
  confidence_threshold: 0.75
Steps
1Add the .warpfix.yaml config above to your repo root
2Install WarpFix GitHub App on the repository
3WarpFix starts tracking test pass/fail history automatically
4After 10+ runs, flaky tests are identified and quarantined
5Fix suggestions appear as PR comments — no LLM cost