-
Notifications
You must be signed in to change notification settings - Fork 345
Add pa11y testing and reporting #294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 10 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
b63a39c
add pa11y-ci reporting
bollwyvl 5755c49
update docs
bollwyvl ab8748e
fix warnings in new docs
bollwyvl cb3149d
linting, comment out a roadmap item so it will fail
bollwyvl 1c10ad7
add some developer docs, in-browser tools
bollwyvl 2ca1778
try to get audit to show up in annotation
bollwyvl dfabae5
yep, i sure don't know rst
bollwyvl e26b2cb
try annotations directly
bollwyvl ecf6970
clean up more docs
bollwyvl c8001f2
Merge remote-tracking branch 'upstream/master' into add-pa11y
bollwyvl 8e122bb
further streamline test workflow
bollwyvl 970ddd5
rework language about audits, links to specs
bollwyvl 8db7e24
fix reporter
bollwyvl 0997016
address more comments
bollwyvl 4bb257c
uncomment intentional fail
bollwyvl 125d5fb
restore http streaming log
bollwyvl eb84c10
more reporting
bollwyvl fac2b3d
get SEO score back up by adding metatags, normalizing URLs to 127.0.0.1
bollwyvl c846cae
fix url for accessibility page in lighthouse
bollwyvl 3376f82
tweak some language settings
bollwyvl 7c41ef5
merge upstream
bollwyvl 746c5d0
yarn config updates
bollwyvl 7149244
resolve yarn.lock
bollwyvl 88c60f3
merge upstream
bollwyvl d6c043d
resolve yarn.lock
bollwyvl 6aef1c6
merge upstream
bollwyvl c8ecd78
resolve yarn.lock
bollwyvl df90d50
revert default port to 8000
bollwyvl 1f1ba7a
install nodejs
bollwyvl 11a4650
improve artifact uploading
bollwyvl 809c5ab
Update docs/user_guide/accessibility.rst
bollwyvl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,3 +104,4 @@ envs/ | |
|
||
node_modules/ | ||
.vscode | ||
.yarn-packages |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
yarn-offline-mirror "./.yarn-packages" | ||
yarn-offline-mirror-pruning true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# These are the pa11y error codes we'd like to fix. PRs welcome! | ||
|
||
# TODO: remove this line, left in for documentation and review purposes | ||
# WCAG2AA.Principle1.Guideline1_3.1_3_1.H39.3.LayoutTable | ||
|
||
WCAG2AA.Principle1.Guideline1_3.1_3_1.H43,H63 | ||
WCAG2AA.Principle1.Guideline1_3.1_3_1.H43.HeadersRequired | ||
WCAG2AA.Principle1.Guideline1_4.1_4_3.G18.Fail | ||
WCAG2AA.Principle3.Guideline3_2.3_2_2.H32.2 | ||
WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.EmptyNoId | ||
WCAG2AA.Principle4.Guideline4_1.4_1_2.H91.A.NoContent |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we now need this much more complex install config? It's fine if it's really needed, but just looking at it seems much less-maintainable to an average person to me 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure, can drop the cache.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well if it's really useful then we should keep it, I just think we should be in the habit of justifying added complexity and maintenance burden, so I'm wondering what benefit it brings! (not out of skepticism, just because I do not know)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
simplified on 8e122bb etc
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the CI cache makes lighter use of community resources, e.g. pypi. It's not making a detectable speed difference, however in this case.
To really drive down CLI complexity, I can highly recommend
doit
... it's nice for multi-language projects like this.