Skip to content

Commit 9d1ecbc

Browse files
committed
fix: make shellcheck gate actionable
1 parent f45fff7 commit 9d1ecbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818

1919
- name: Run shellcheck on scripts
2020
run: |
21-
shellcheck scripts/*.sh
21+
shellcheck -S error scripts/*.sh
2222
2323
- name: Run shellcheck on lib scripts (if any)
2424
run: |
2525
if compgen -G "scripts/lib/*.sh" > /dev/null; then
26-
shellcheck scripts/lib/*.sh
26+
shellcheck -S error scripts/lib/*.sh
2727
else
2828
echo "No scripts/lib/*.sh files found, skipping."
2929
fi

0 commit comments

Comments
 (0)