forked from baron/baron-sso
ci: add code check badges and coverage reports
This commit is contained in:
@@ -34,9 +34,12 @@ function shouldUseWorker(useWorker: boolean | undefined) {
|
||||
async function fetchAllCursorPagesInWorker<TItem>(
|
||||
request: CursorFetchRequest,
|
||||
): Promise<CursorPageResponse<TItem>> {
|
||||
const worker = new Worker(new URL("./cursorFetch.worker.ts", import.meta.url), {
|
||||
type: "module",
|
||||
});
|
||||
const worker = new Worker(
|
||||
new URL("./cursorFetch.worker.ts", import.meta.url),
|
||||
{
|
||||
type: "module",
|
||||
},
|
||||
);
|
||||
const id = createRequestId();
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
|
||||
Reference in New Issue
Block a user