Add WCAG 2.2 and EN 301 549 data, update to VPAT 2.5, refactor Librarian #242
Workflow file for this run
This file contains 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
name: pre-commit | |
on: | |
pull_request: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: actions/setup-python@v2 | |
# Skip checks that don't auto-fix issues initially. | |
- uses: pre-commit/[email protected] | |
env: | |
SKIP: remark,check-yaml,check-json,check-added-large-files | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
# Final run without committing to ensure passes. | |
- uses: pre-commit/[email protected] | |
env: | |
# We skip checks that have their own actions. | |
SKIP: remark. |