Today I shipped 5 tools that all solve the same problem from different angles: GitHub Actions workflows break silently, and nobody catches it until production.
Here's the full toolkit.
🛡️ 1. workflow-guardian (GitHub Action)
Runs in your CI. Lints every workflow file on every PR.
- uses: ollieb89/workflow-guardian@v1
Catches: unpinned actions, deprecated commands, security footguns, path filter bugs.
🔍 2. Workflow Linter (VS Code Extension)
Same rules, but in your editor. Real-time squiggly underlines as you type.
⚡ 3. ghact (npm CLI)
Run ghact in any repo to lint workflows from your terminal.
npm install -g ghact
ghact
📊 4. test-results-reporter (GitHub Action)
Aggregates JUnit/Jest/pytest results into one PR comment. Flaky test detection built in.
- uses: ollieb89/test-results-reporter@v1
🏷️ 5. pr-size-labeler (GitHub Action)
Auto-labels PRs by diff size (XS through XL). Smart exclusions for lock files.
- uses: ollieb89/pr-size-labeler@v1
Why a Toolkit?
No single tool catches everything:
- CI-time linting catches issues before merge (workflow-guardian)
- Editor-time linting catches issues before commit (Workflow Linter)
- CLI linting catches issues before push (ghact)
- Test aggregation catches test failures faster (test-results-reporter)
- Size labeling catches review quality issues (pr-size-labeler)
Different layers, same goal: fewer surprises in production.
All Free, All Open Source
Everything is MIT licensed. No telemetry, no external APIs, no data leaving your infrastructure.
Building in public. This entire toolkit was built and shipped in a single day. Follow for updates as I add more tools.
Top comments (0)