feat(ci): integrate playwright visual regression and accessibility checks - #207
Open
toufiq00007 wants to merge 1 commit into
Open
feat(ci): integrate playwright visual regression and accessibility checks#207toufiq00007 wants to merge 1 commit into
toufiq00007 wants to merge 1 commit into
Conversation
…x landing hero aria-label
|
@toufiq00007 is attempting to deploy a commit to the arzoorai0207-5745's projects Team on Vercel. A member of the Team first needs to authorize it. |
5 tasks
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Owner
|
pr failing, check out ! |
arzoo0511
requested review from
Anushreebasics,
Mrigakshi-Rathore,
Mummanajagadeesh,
Naman-iitm and
diksha78dev
July 11, 2026 08:01
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.
Overview
This PR introduces automated end-to-end user interface quality assurance checks into our CI pipeline. It integrates official containerized Playwright configurations to execute automated Accessibility (a11y) audits and Visual Regression/Snapshot tests seamlessly on pull requests.
Additionally, this resolve an active WCAG accessibility violation identified on the landing page hero component during baseline generation.
Changes Introduced
⚙️ CI/CD & Test Automation
playwright.config.ts: Initialized core Playwright architecture supporting parallel processing, desktop/mobile multi-browser configurations, and automatic local server mounting hooks..github/workflows/ci.yml: Unified pipeline barriers by appending a containerizedui-qualityjob that runs concurrently alongside core validation scripts inside Microsoft's official Playwright docker environment.tests/ui-quality.spec.ts: Implemented a core UI audit suite using@axe-core/playwrightfor automated accessibility checks (wcag2a,wcag21aaspecifications) and pixel-matching snapshot engines..gitignore: Added exceptions for dynamicplaywright-report/and localtest-results/artifacts to prevent repository clutter.♿ Accessibility Standard Fixes
src/pages/LandingPage.tsx: Patched the interactive Framer Motion scroll indicator button component by providing a distinctaria-label="Scroll down to features section". This fixes a critical WCAG violation where screen-readers encountered a structural button missing discernible alternative inner-text strings.Verifications & Testing Completed
closes #206