Send yarn lint & test to background

This commit is contained in:
Brandon Presley 2022-10-30 15:43:27 +13:00
parent 8ad6189dfc
commit 294c6ee639
1 changed files with 2 additions and 2 deletions

View File

@ -4,9 +4,9 @@ set -ex
yarn tsc & yarn tsc &
tsc=$! tsc=$!
yarn lint yarn lint &
lint=$! lint=$!
yarn test yarn test &
units=$1 units=$1
wait $tsc $lint $units wait $tsc $lint $units
git push origin HEAD & git push origin HEAD &