mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-29 13:01:08 +00:00
Adds curlylint workflow
This commit is contained in:
parent
6f8ca302e5
commit
0a8a4f0ee4
1 changed files with 28 additions and 0 deletions
28
.github/workflows/curlylint.yaml
vendored
Normal file
28
.github/workflows/curlylint.yaml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
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' \
|
||||||
|
bookwyrm/templates
|
Loading…
Reference in a new issue