We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec033a9 commit 944fd75Copy full SHA for 944fd75
.circleci/config.yml
@@ -119,6 +119,9 @@ jobs:
119
--ignore @requestnetwork/payment-processor \
120
--ignore @requestnetwork/integration-test \
121
--concurrency=2
122
+ environment:
123
+ # Lerna starts 2 Jest commands at the same time (--concurrency=2), so we use 50% core for each
124
+ JEST_MAX_WORKERS: '50%'
125
- store_test_results:
126
path: packages/advance-logic/reports/
127
jest.config.js
@@ -17,4 +17,5 @@ module.exports = {
17
},
18
],
19
20
+ ...(process.env.JEST_MAX_WORKERS ? { maxWorkers: process.env.JEST_MAX_WORKERS } : {}),
21
};
0 commit comments