From 1cb4f160aeecbec512b21f458e0e6335dd3c47d1 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Fri, 12 Nov 2021 18:25:46 +0100 Subject: [PATCH] split lint --- apps/remix-ide/ci/lint.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/apps/remix-ide/ci/lint.sh b/apps/remix-ide/ci/lint.sh index 9cc85c6210..1299fab9b5 100755 --- a/apps/remix-ide/ci/lint.sh +++ b/apps/remix-ide/ci/lint.sh @@ -8,10 +8,8 @@ TEST_EXITCODE=0 KEYS=$(jq -r '.projects | keys' workspace.json | tr -d '[],"') -for row in $KEYS; do - echo ${row} - echo "----" -done +TESTFILES=$($KEYS | circleci tests split) +echo $TESTFILES echo "$TEST_EXITCODE" if [ "$TEST_EXITCODE" -eq 1 ]