From 43000089e5290cb97b0e2d0f05007ff172deff28 Mon Sep 17 00:00:00 2001 From: Giuseppe Steduto Date: Thu, 18 Jan 2024 13:46:37 +0100 Subject: [PATCH] ci(shellcheck): exclude node_modules from the analyzed paths (#387) --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index 59e67290..9fbd6d1d 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -28,7 +28,7 @@ check_commitlint () { } check_shellcheck () { - find . -name "*.sh" -exec shellcheck {} \; + find . -name "*.sh" ! -path "./reana-ui/node_modules/*" -exec shellcheck {} \; } check_sphinx () {