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 09b2adb commit 4ad94d7Copy full SHA for 4ad94d7
packages/core/src/lib/implementation/execute-plugin.ts
@@ -11,11 +11,13 @@ import {
11
} from '@code-pushup/models';
12
import {
13
type ProgressBar,
14
+ asyncSequential,
15
getProgressBar,
16
groupByStatus,
17
logMultipleResults,
18
pluralizeToken,
19
scoreAuditsWithTarget,
20
+ settlePromise,
21
stringifyError,
22
} from '@code-pushup/utils';
23
@@ -176,7 +178,7 @@ export async function executePlugins(
176
178
);
177
179
180
const errorsTransform = ({ reason }: PromiseRejectedResult) => String(reason);
- const results = await Promise.allSettled(pluginsResult);
181
+ const results = await asyncSequential(pluginsResult, settlePromise);
182
183
progressBar?.endProgress('Done running plugins');
184
0 commit comments