Design System Problems

Lighthouse Accessibility

January 15, 2026 • 5 min read

Lighthouse Accessibility

Lighthouse accessibility auditing provides accessibility checks as part of Google’s open-source web quality tool. Available in Chrome DevTools and as a CI/CD tool, Lighthouse makes accessibility testing accessible to all developers.

What Is Lighthouse Accessibility

Lighthouse is an automated tool for improving web page quality. It audits performance, accessibility, best practices, SEO, and progressive web app capabilities. The accessibility audit uses axe-core under the hood.

Lighthouse accessibility scoring aggregates individual check results into a 0-100 score. While the score provides a quick overview, the detailed results identifying specific issues provide more actionable information.

Lighthouse accessibility audits run in:

How Lighthouse Accessibility Works

Chrome DevTools integration makes Lighthouse immediately available. Open DevTools, navigate to the Lighthouse panel, select Accessibility category, and generate a report.

Reports show:

Each failed audit includes:

Command line usage enables CI/CD integration:

Lighthouse CI integrates with continuous integration platforms, running audits on every commit and comparing against baselines:

PageSpeed Insights provides web-based Lighthouse auditing without local tools, useful for quick checks of deployed pages.

Key Considerations

Common Questions

What accessibility score is acceptable?

A score of 100 means all automated checks pass, not that the page is fully accessible. Pages can score 100 while having significant accessibility issues that require manual verification.

Treat the score as a baseline indicator. Aim for 100 on automated checks, then supplement with manual testing. A score below 90 indicates clear issues needing attention.

How does Lighthouse compare to dedicated accessibility tools?

Lighthouse provides convenient accessibility checking bundled with other web quality metrics. It uses axe-core, so accessibility-specific results are comparable.

Dedicated tools like axe DevTools provide more detailed accessibility analysis, better issue visualization, and specialized accessibility workflows. Use Lighthouse for quick checks and comprehensive tools for deeper analysis.

Should Lighthouse accessibility be part of CI/CD?

Yes, Lighthouse CI can enforce accessibility standards in deployment pipelines. Configuration specifies score thresholds or specific audits that must pass.

For design systems, testing individual components may be more valuable than page-level Lighthouse audits. Component testing with axe-core catches issues before they reach composed pages.

Summary

Lighthouse accessibility provides axe-core-powered accessibility auditing integrated with Chrome DevTools and available for CI/CD integration. The convenience of bundled web quality metrics makes Lighthouse a practical starting point, though comprehensive accessibility testing benefits from dedicated tools and manual verification.

Buoy scans your codebase for design system inconsistencies before they ship

Detect Design Drift Free
← Back to Accessibility Compliance