Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/axe.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: axe
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
axe:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 16.x
uses: actions/setup-node@v1
with:
node-version: 16.x
- run: npm ci
- run: npm run dev & npx wait-on http://localhost:3000
- name: Install browser drivers
run: npx browser-driver-manager install chrome
- name: Run axe
run: |
npm install -g @axe-core/cli
axe http://localhost:3000 --exit
Loading