Skip to content

Commit

Permalink
fix: exclude node_modules from kebab workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Feb 25, 2024
1 parent 6a57f38 commit a4d0750
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/scripts/kebab-case.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/bin/bash
non_compliant_files=()
ignoreList=("^\.\/.git" "^\.\/\..*" "^\.\/[^\/]*$")
ignoreList+=("^\.\/node_modules")
while IFS= read -r line; do
ignoreList+=(".*$line")
done < .gitignore
Expand Down

0 comments on commit a4d0750

Please sign in to comment.