Skip to content

Commit

Permalink
Merge pull request #81 from open-contracting/pa11y
Browse files Browse the repository at this point in the history
Add Accessibility workflow
  • Loading branch information
jpmckinney committed Dec 12, 2023
2 parents 45609b1 + 1fbf744 commit 1e472ca
Show file tree
Hide file tree
Showing 135 changed files with 13,668 additions and 10,082 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/a11y.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Accessibility
on: [push, pull_request]
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
# https://github.com/pa11y/pa11y-ci#pa11y-ci-3-and-ubuntu
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: pip
cache-dependency-path: '**/requirements*.txt'
- run: npm install pa11y-ci
- run: pip install -r requirements.txt
- working-directory: extension_explorer
run: pybabel compile -f -d locale
- name: Build
shell: bash
# The Medicine extension has examples, tables, schema and codelists.
run: |
git clone https://github.com/open-contracting/ocds-extensions-translations.git
ocdsextensionregistry generate-data-file --locale-dir ocds-extensions-translations/locale medicine==master > extension_explorer/data/extensions.json
python freeze.py
- name: Serve
run: |
python -m http.server -d extension_explorer/build/ &
sleep 5
- run: npx pa11y-ci -c pa11y.default.json
Loading

0 comments on commit 1e472ca

Please sign in to comment.