Draft
Phase 2: Automate Lighthouse Audits and Track Quality Metrics#939
Conversation
5 tasks
Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
…ssages Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
…kflow and script Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
…ntation Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
…mprove JSON error handling Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
…umentation Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
…sing and input descriptions Co-authored-by: ckenst <6896787+ckenst@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Automate Lighthouse audits and track quality metrics
Phase 2: Automate Lighthouse Audits and Track Quality Metrics
Sep 7, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implemented automated Lighthouse audits during CI/CD pipeline to record Performance, Accessibility, and SEO scores per released version. Metrics are persisted in an append-only format to support future trend analysis and quality tracking.
Changes
New Workflows & Scripts
.github/workflows/lighthouse-audit.yml: GitHub Actions workflow triggered on release tags (v*) or manual dispatch--no-sandbox, simulated throttling)_data/quality_log.ymlwith[skip-version]guard to prevent CI loopstools/lighthouse_audit.rb: Ruby script for Lighthouse coordination_data/quality_log.yml: Append-only YAML quality metrics logModified Workflows
.github/workflows/deploy.yml: Added[skip-version]flag detection to skip version bump/tag creation for metrics-only commits, preventing deployment loopsDocumentation
ROADMAP.md: Marked Phase 2 Lighthouse Tracking complete with implementation details and design rationale (local site serving, Ruby script, YAML format, version precedence)Example Quality Log Entry
Design Notes
[skip-version]guard: Metrics commits skip version increment, preventing cascading CI runsworkflow_dispatchenables testing and recovery workflows