Currently, using lint-staged, the npm run reference-tables and npm run coverage-report scripts are automatically ran when a git commit happens ONLY if files matching content/patterns/**/examples/*.html have been changed.
The generating scripts have been overlooked in that automatic process so this PR adds those (scripts/coverage-report.* and scripts/reference-tables.*). This should reduce any issues with the Check examples/index.html / coverage check if only those script files have been updated in a PR.
Related to https://github.com/w3c/aria-practices/pull/3024#issuecomment-2189085884.
Currently, using
lint-staged
, thenpm run reference-tables
andnpm run coverage-report
scripts are automatically ran when a git commit happens ONLY if files matchingcontent/patterns/**/examples/*.html
have been changed.The generating scripts have been overlooked in that automatic process so this PR adds those (
scripts/coverage-report.*
andscripts/reference-tables.*
). This should reduce any issues with theCheck examples/index.html / coverage
check if only those script files have been updated in a PR.