Skip to content

Commit

Permalink
ci(shellcheck): exclude node_modules from the analyzed paths (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
giuseppe-steduto committed Feb 12, 2024
1 parent 809fdc5 commit e5a4af3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ check_commitlint () {
}

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

check_sphinx () {
Expand Down

0 comments on commit e5a4af3

Please sign in to comment.