Skip to content

Commit

Permalink
Add store name tag to improve concurrent output in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aklinker1 committed Jan 22, 2024
1 parent bf68905 commit a0d43a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/submit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export async function submit(config: InlineConfig): Promise<SubmitResults> {
async task(_ctx, task) {
try {
const setStatus = (text: string) => {
task.output = text;
task.output = `[${name}] ${text}`;
};
const store = getStore(setStatus);

Expand Down

0 comments on commit a0d43a6

Please sign in to comment.