CI use djhtml indent check instead of djlint check

This commit is contained in:
Tibor Leupold 2023-01-17 07:06:55 -08:00
Родитель 5d0167ab86
Коммит 789926d05f
1 изменённых файлов: 7 добавлений и 1 удалений

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

@ -96,7 +96,13 @@ jobs:
black . --check
- name: Run HTML linting
run: |
djlint . --check
# 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
# djlint . --check
#
# Using djhtml indent check in the meantime.
djhtml -c maintenance/ network-api/
djlint . --lint
continue-on-error: true
- name: Run type checks