-
Notifications
You must be signed in to change notification settings - Fork 224
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
Automated link checking? #889
Comments
cwa-documentation has the advantage that all files are pure static Markdown. For the website, Markdown (blogposts) and JSON files with HTML (FAQ) are compiled into the resulting website, so we might not be able to just check the source files for errors. This would make a solution more complicated. However, we could check the output of the build because that is HTML-only. Not sure how easy this would be. Corona-Warn-App Open Source Team |
Links are still broken, see #1778. Edit: now fixed. |
Closing in favour of feature request #1781. |
Your Question
Is there some way to automate checking of links used by https://www.coronawarn.app/ to identify failed links, like the one reported in #886?
In the cwa-documentation repository there is a check in
checks.yml
unfortunately this can't be taken 1:1 because it only checks markdown files *.md
"checklinks": "find . -not -path \"*node_modules*\" -not -path \"*.github*\" -name \"*.md\" | xargs -n 1 markdown-link-check",
Perhaps there is something similar which could be used on https://www.coronawarn.app/?
The text was updated successfully, but these errors were encountered: