Skip to content

Commit 3cbd481

Browse files
ci(shellcheck): exclude node_modules from the analyzed paths (reanahub#387)
1 parent 12a3563 commit 3cbd481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ check_commitlint () {
2828
}
2929

3030
check_shellcheck () {
31-
find . -name "*.sh" -exec shellcheck {} \;
31+
find . -name "*.sh" ! -path "./reana-ui/node_modules/*" -exec shellcheck {} \;
3232
}
3333

3434
check_sphinx () {

0 commit comments

Comments
 (0)