Skip to content

Commit

Permalink
Create pa11y.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nwanduka authored Jul 1, 2024
1 parent a9058bd commit 8dff58b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pa11y.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: pa11y
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
pa11y:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm install -g http-server
- run: npm run build --if-present
- run: http-server -s &
- name: Run Pa11y
run: |
npm install -g pa11y
sleep 90
pa11y http://127.0.0.1:8080

0 comments on commit 8dff58b

Please sign in to comment.