Activate HTML indent check in CI

This commit is contained in:
Tibor Leupold 2023-01-17 07:44:30 -08:00
Родитель 991f95692d
Коммит 8c9646d04b
1 изменённых файлов: 2 добавлений и 2 удалений

4
.github/workflows/continous-integration.yml поставляемый
Просмотреть файл

@ -94,8 +94,6 @@ jobs:
flake8 .
isort . --check-only
black . --check
- name: Run HTML linting
run: |
# Skipping djlint format checking because it has consistency issues and issues with blocktrans.
# This should change when formatting is moved to a version using and AST.
# See also: https://github.com/Riverside-Healthcare/djLint/issues/493
@ -103,6 +101,8 @@ jobs:
#
# Using djhtml indent check in the meantime.
djhtml -c maintenance/ network-api/
- name: Run HTML linting
run: |
djlint . --lint
continue-on-error: true
- name: Run type checks