From 294c6ee6398148f6e42763c72e510b6428cecf3c Mon Sep 17 00:00:00 2001 From: Brandon Presley Date: Sun, 30 Oct 2022 15:43:27 +1300 Subject: [PATCH] Send yarn lint & test to background --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index e5d16f5..d4cf635 100755 --- a/deploy.sh +++ b/deploy.sh @@ -4,9 +4,9 @@ set -ex yarn tsc & tsc=$! -yarn lint +yarn lint & lint=$! -yarn test +yarn test & units=$1 wait $tsc $lint $units git push origin HEAD &