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 a9b09d5 commit 000d08eCopy full SHA for 000d08e
dev-packages/node-overhead-gh-action/index.mjs
@@ -105,7 +105,8 @@ async function run() {
105
current = await getOverheadMeasurements();
106
} catch (error) {
107
core.error('Error getting current overhead measurements');
108
- core.error(error);
+ core.endGroup();
109
+ throw error;
110
}
111
core.debug(`Current overhead measurements: ${JSON.stringify(current, null, 2)}`);
112
core.endGroup();
@@ -133,7 +134,7 @@ async function run() {
133
134
bodyParts.push(markdownTable(formatter.formatResults(base, current)));
135
136
core.error('Error generating markdown table');
137
138
139
140
if (baseWorkflowRun) {
0 commit comments