From a4d0750f879eb3ffdffbfb600eb53a644126c970 Mon Sep 17 00:00:00 2001 From: Keyrxng <106303466+Keyrxng@users.noreply.github.com> Date: Sun, 25 Feb 2024 09:51:44 +0000 Subject: [PATCH] fix: exclude node_modules from kebab workflow --- .github/workflows/scripts/kebab-case.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/scripts/kebab-case.sh b/.github/workflows/scripts/kebab-case.sh index 7c4e1926..fa93d7fe 100755 --- a/.github/workflows/scripts/kebab-case.sh +++ b/.github/workflows/scripts/kebab-case.sh @@ -1,6 +1,7 @@ #!/bin/bash non_compliant_files=() ignoreList=("^\.\/.git" "^\.\/\..*" "^\.\/[^\/]*$") +ignoreList+=("^\.\/node_modules") while IFS= read -r line; do ignoreList+=(".*$line") done < .gitignore