[CI] Decrease number of Jest workers (#89504)

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
Tyler Smalley 2021-01-27 16:15:28 -08:00 committed by GitHub
parent f2aa5bcd95
commit b2d4412146
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -10,4 +10,4 @@ source "$(dirname "${0}")/../util.sh"
export JOB=kibana-oss-jest
checks-reporter-with-killswitch "Jest Unit Tests" \
node scripts/jest --ci --verbose
node scripts/jest --ci --maxWorkers=5 --verbose

View file

@ -7,4 +7,4 @@ source "$(dirname "${0}")/../util.sh"
export JOB=kibana-jest
checks-reporter-with-killswitch "Jest Unit Tests" \
node scripts/jest --ci --verbose --coverage
node scripts/jest --ci --maxWorkers=5 --verbose

View file

@ -3,4 +3,4 @@
source src/dev/ci_setup/setup_env.sh
checks-reporter-with-killswitch "Jest Unit Tests" \
node scripts/jest --ci --verbose --maxWorkers=10 --coverage
node scripts/jest --ci --verbose --maxWorkers=6 --coverage