We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0735a3 commit ed34016Copy full SHA for ed34016
.github/workflows/pa11y.yml
@@ -0,0 +1,19 @@
1
+name: pa11y
2
+on:
3
+ pull_request:
4
+ types: [opened, reopened, synchronize]
5
+ workflow_dispatch:
6
+
7
+jobs:
8
+ pa11y:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Use Node.js 14
13
+ uses: actions/setup-node@v1
14
+ with:
15
+ node-version: 14
16
+ - name: Run pa11y
17
+ run: |
18
+ npm i
19
+ npm test
README.md
@@ -1,3 +1,5 @@
This repo exist to demonstrate an approach to accesibility testing using Github actions and [Pa11y]()
-HTML based on [HTML 5 boilerplate h5bp](https://html5boilerplate.com/)`
+HTML based on [HTML 5 boilerplate h5bp](https://html5boilerplate.com/)`
+`npm run test`
0 commit comments