AAE-47554 Add actionlint to pre-commit config

This commit is contained in:
andrphilippi
2026-09-03 13:59:47 +02:00
parent 6f2d7813b9
commit c79d4b6ddf
4 changed files with 49 additions and 1 deletions
+7 -1
View File
@@ -2,4 +2,10 @@
export NODE_OPTIONS=--max_old_space_size=8192
lint-staged
lint-staged || exit 1
if command -v pre-commit >/dev/null 2>&1; then
pre-commit run
else
echo "pre-commit not found on PATH - skipping workflow lint locally (CI enforces it). Install: https://pre-commit.com/#install"
fi