mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-01 06:29:44 +00:00
28 lines
735 B
YAML
28 lines
735 B
YAML
name: Templates validator
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install curlylint
|
|
run: pip install curlylint
|
|
|
|
- name: Run linter
|
|
run: >
|
|
curlylint --rule 'aria_role: true' \
|
|
--rule 'django_forms_rendering: true' \
|
|
--rule 'html_has_lang: true' \
|
|
--rule 'image_alt: true' \
|
|
--rule 'meta_viewport: true' \
|
|
--rule 'no_autofocus: true' \
|
|
--rule 'tabindex_no_positive: true' \
|
|
--exclude '_modal.html|create_status/layout.html|reading_modals/layout.html' \
|
|
bookwyrm/templates
|