From 8c9646d04b82a9a404e54b1f94f0bd67d1d7d34e Mon Sep 17 00:00:00 2001 From: Tibor Leupold Date: Tue, 17 Jan 2023 07:44:30 -0800 Subject: [PATCH] Activate HTML indent check in CI --- .github/workflows/continous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continous-integration.yml b/.github/workflows/continous-integration.yml index 1dafd0965..c4e9d0360 100644 --- a/.github/workflows/continous-integration.yml +++ b/.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