Audit WCAG 2.1 accessibility on every pull request (free…
    Neura MarketNeura Market/Stable Diffusion
    ChatGPTChatGPTClaudeClaudeGeminiGeminiCursorCursorGrokGrokPerplexityPerplexityStable DiffusionStable Diffusion
    DeepSeekDeepSeekCoPilotCoPilotMidjourneyMidjourney
    View All Directories
    OverviewPromptsBlogVideosGuidesCoursesCommunityModelsLoRAsComfyUI WorkflowsTrending
    Stable DiffusionBlogAudit WCAG 2.1 accessibility on every pull request (free GitHub Action)
    Back to Blog
    Audit WCAG 2.1 accessibility on every pull request (free GitHub Action)
    a11y

    Audit WCAG 2.1 accessibility on every pull request (free GitHub Action)

    Jaimin April 24, 2026
    0 views

    I build web apps and I always mean to audit accessibility before shipping, and I never do. axe-core...


    title: Audit WCAG 2.1 accessibility on every pull request (free GitHub Action) published: true description: tags: accessibility, github, webdev, devops

    cover_image: https://direct_url_to_image.jpg

    Use a ratio of 100:42 for best results.

    published_at: 2026-04-24 18:01 +0000


    I build web apps and I always mean to audit accessibility before shipping, and I never do. axe-core DevTools is great but it's a browser extension
    I have to remember to open. So I built the thing I actually wanted:
    a GitHub Action that runs axe-core on every PR and fails the job if it
    finds serious violations.

    The install

    on: pull_request
    jobs:                                                                                                                                                                                                            
      a11y:
        runs-on: ubuntu-latest                                                                                                                                                                                       
        permissions: { contents: read, pull-requests: write } 
        steps:                                                                                                                                                                                                       
          - uses: jpatel3/a11yscout@v1
            with:                                                                                                                                                                                                    
              urls: https://your-preview-url.example.com      
              level: AA                                                                                                                                                                                              
              fail-on: serious
    

    That's it. You'll get a PR comment like:

    3 violations (2 critical, 1 serious)

    • button-name — Buttons must have discernible text (WCAG 4.1.2 A)
    • image-alt — Images must have alternative text (WCAG 1.1.1 A)
    • link-name — Links must have discernible text (WCAG 2.4.4 A)

    The optional source-mapping plugin

    axe-core reports violations by CSS selector — button.sc-dkPtRN — which
    is useless. a11yscout ships an optional Vite plugin that makes the violations say src/components/Button.tsx:12:4 instead:

    import { a11yscout } from "@a11yscout/vite-plugin";                                                                                                                                                              
    export default defineConfig({                                                                                                                                                                                    
      plugins: [react(), a11yscout()],
    });                                                                                                                                                                                                              
    

    The plugin injects a data-a11yscout-src attribute at build time, and the
    scanner reads it back.

    What it doesn't do (yet)

    • Next.js / webpack plugins — only Vite
    • Auto-detect Vercel/Netlify preview URLs — you pass them explicitly
    • AI fix suggestions
    • Persistent history

    Links

    • Marketplace: https://github.com/marketplace/actions/a11yscout
    • Source: https://github.com/jpatel3/a11yscout
    • License: MIT

    It's day one. Feedback welcome — especially on which framework plugin to
    build next.

    Tags

    a11ygithubwebdevdevops

    Comments

    More Blog

    View all
    Context bankruptcy: The case for strategic forgetting for AI Agentsai

    Context bankruptcy: The case for strategic forgetting for AI Agents

    Most of us have seen a coding agent fail to complete a task we know it can do. We just don't...

    J
    James O'Reilly
    Parallel Compliance Engine: Drive-to-Sheets Multi-Agent Orchestrationgooglecloud

    Parallel Compliance Engine: Drive-to-Sheets Multi-Agent Orchestration

    When building Generative AI applications, developers often encounter a massive bottleneck: sequential...

    A
    Aryan Irani
    Is It Ethical to Post and Ask About Circuits on Dev.to?discuss

    Is It Ethical to Post and Ask About Circuits on Dev.to?

    I’ve been thinking about sharing some electronic circuit posts on Dev.to — small circuits, DIY...

    C
    codebunny20
    The One-Click Exporter: AI Studio Antigravity, Probed to Its Limitsagents

    The One-Click Exporter: AI Studio Antigravity, Probed to Its Limits

    What nobody tells you about exporting your multi-agent prototype to a local workspace. Every...

    L
    leslysandra
    Guarding the till while autonomous data agents do the diggingagenticarchitect

    Guarding the till while autonomous data agents do the digging

    Autonomous agents are genuinely good at answering messy business questions. Give one an LLM and a set...

    S
    Sireesha Pulipati
    Return on Attention: Why AI Code Reviews Are Wearing Us Outai

    Return on Attention: Why AI Code Reviews Are Wearing Us Out

    PR volume went up, ticket quality didn't, and the gap got filled with LLMs on both sides of the review: bots reviewing, bots replying, bots occasionally arguing with bots about priorities that only existed in a teammate's head. Our CEO named the actual problem, and it's bigger than code review.

    C
    christine

    Stay up to date

    Get the latest Stable Diffusion prompts, rules, and resources delivered to your inbox weekly.

    Neura Market LogoNeura Market

    Discover the best AI prompts, plugins, and resources for Stable Diffusion and more.

    Content Types

    • Rules
    • Prompts
    • MCPs
    • Agents
    • Guides

    Platforms

    • ChatGPT Directory
    • Claude Directory
    • Gemini Directory
    • Cursor Directory
    • Grok Directory
    • Perplexity Directory
    • DeepSeek Directory
    • CoPilot Directory
    • Stable Diffusion Directory
    • Midjourney Directory
    • All Directories

    Resources

    • Blog
    • Documentation
    • Help Center
    • Marketplace

    Legal

    • Privacy Policy
    • Terms of Service

    © 2026 Neura Market. All rights reserved.

    |

    Not affiliated with any AI platform vendors.

    Ready-made automations for this

    Workflows from the Neura Market marketplace related to this Stable Diffusion resource

    • Automate Android Asset Sync from Figma to GitHub via Pull Requestn8n · Free · Related topic
    • Automate n8n Workflow Backups to GitHub with Pull Request and Slack Alertsn8n · Free · Related topic
    • Automate Travis CI Builds on GitHub Push or Pull Requestn8n · Free · Related topic
    • Automate GitHub Pull Request Linting and Auto-Fix with Google Gemini AIn8n · Free · Related topic
    Browse all workflows