diff --git a/deploy.sh b/deploy.sh index e5d16f51..d4cf6352 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 &