Skip to content

Commit e5a4af3

Browse files
ci(shellcheck): exclude node_modules from the analyzed paths (#387)
1 parent 809fdc5 commit e5a4af3

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
@@ -29,7 +29,7 @@ check_commitlint () {
2929
}
3030

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

3535
check_sphinx () {

0 commit comments

Comments
 (0)