Skip to content

Commit

Permalink
added - a11y action
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveJonesDev committed Nov 30, 2023
1 parent 658116d commit 4c10a28
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/accessibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Accessibility Check

on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]

jobs:
accessibility:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # or the version you need

- name: Install dependencies
run: npm install

- name: Run Axe Linter
run: npx axe-linter # Replace this with your specific command to run Axe Linter

0 comments on commit 4c10a28

Please sign in to comment.