From 2d33ea06d662e0782113ab2fc6415cb3a8803f85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 13:02:51 +0900 Subject: [PATCH 01/10] Enable --- .github/swc-ecosystem-ci/{todos => tests}/bunchee.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/swr.ts | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename .github/swc-ecosystem-ci/{todos => tests}/bunchee.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/swr.ts (100%) diff --git a/.github/swc-ecosystem-ci/todos/bunchee.ts b/.github/swc-ecosystem-ci/tests/bunchee.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/bunchee.ts rename to .github/swc-ecosystem-ci/tests/bunchee.ts diff --git a/.github/swc-ecosystem-ci/todos/swr.ts b/.github/swc-ecosystem-ci/tests/swr.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/swr.ts rename to .github/swc-ecosystem-ci/tests/swr.ts From 869ead4c965d7812adb867ce028621de1cd10871 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 13:25:42 +0900 Subject: [PATCH 02/10] bunchee --- .github/swc-ecosystem-ci/tests/bunchee.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/swc-ecosystem-ci/tests/bunchee.ts b/.github/swc-ecosystem-ci/tests/bunchee.ts index 8d405f0fc644..1b7f8306f7ab 100644 --- a/.github/swc-ecosystem-ci/tests/bunchee.ts +++ b/.github/swc-ecosystem-ci/tests/bunchee.ts @@ -6,7 +6,7 @@ export async function test(options: RunOptions) { ...options, repo: "huozhi/bunchee", branch: "main", - build: "build", - test: ["test"], + // build: "build", + test: ["test:ci"], }); } From a5c1b1eb863a21db91ef945d9fd03bd9a3c8581d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 13:26:32 +0900 Subject: [PATCH 03/10] less override --- .github/swc-ecosystem-ci/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/swc-ecosystem-ci/utils.ts b/.github/swc-ecosystem-ci/utils.ts index c8d315059c2b..b4964854d25c 100644 --- a/.github/swc-ecosystem-ci/utils.ts +++ b/.github/swc-ecosystem-ci/utils.ts @@ -496,7 +496,7 @@ export async function installSwc({ version }: { version: string }) { await fs.promises.mkdir(swcPath, { recursive: true }); await fs.promises.writeFile(path.join(swcPath, "package.json"), "{}", "utf8"); cd(swcPath); - await $`npm install @swc/core@${version} @swc/jest @swc/types ts-node@11.0.0-beta.1 jest@29.6.4 --no-save --force`; + await $`npm install @swc/core@${version} @swc/jest @swc/types --no-save --force`; } export const isWorkingWithIgnoredTess = process.env.CI_MODE === "ignored"; From ac7b0daa4975b301fc3ea18c532cd7eb11b3bfaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 13:41:31 +0900 Subject: [PATCH 04/10] fix override --- .github/swc-ecosystem-ci/utils.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/swc-ecosystem-ci/utils.ts b/.github/swc-ecosystem-ci/utils.ts index b4964854d25c..0feb4b37d189 100644 --- a/.github/swc-ecosystem-ci/utils.ts +++ b/.github/swc-ecosystem-ci/utils.ts @@ -59,7 +59,13 @@ export async function $(literals: TemplateStringsArray, ...values: any[]) { const root = dirnameFrom(import.meta.url); export async function setupEnvironment(): Promise { - const workspace = path.resolve(root, "workspace"); + const workspace = path.resolve( + root, + "..", + "..", + "..", + "swc-ecosystem-ci-workspace", + ); swcPath = path.resolve(workspace, ".swc"); cwd = process.cwd(); env = { @@ -265,8 +271,7 @@ export async function runInRepo(options: RunOptions & RepoOptions) { } const overrides = options.overrides || {}; // https://github.com/facebook/react-native/issues/35701#issuecomment-1697798232 - overrides["jest"] = path.join(swcPath, "node_modules", "jest"); - overrides["ts-node"] = path.join(swcPath, "node_modules", "ts-node"); + overrides["@swc/jest"] = path.join(swcPath, "node_modules", "@swc", "jest"); overrides["@swc/core"] = path.join(swcPath, "node_modules", "@swc", "core"); overrides["@swc/types"] = path.join(swcPath, "node_modules", "@swc", "types"); console.log("OVERRIDES", overrides); From 9b63251a400bf2fdafed2ddbf14b595c2711735a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 13:43:32 +0900 Subject: [PATCH 05/10] Enable all --- .github/swc-ecosystem-ci/{todos => tests}/adonisjs-core.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/backstage.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/blueprint.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/budibase.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/dependency-cruiser.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/elysia.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/fluentui.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/formatjs.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/google-model-viewer.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/graphql-yoga.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/ice.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/jotai.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/langchainjs.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/lens-app.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/lingui.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/msw.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/next-auth.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/nightwatch.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/nx.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/orama.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/payload-cms.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/react-joyride.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/react-leaflet.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/redwoodjs.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/swc-plugin-vue-jsx.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tinacms.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tldraw.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tsdx.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tsup.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/umi.ts | 0 .../swc-ecosystem-ci/{todos => tests}/unblock-netease-music.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/unleash.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/valtio.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/waku.ts | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename .github/swc-ecosystem-ci/{todos => tests}/adonisjs-core.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/backstage.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/blueprint.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/budibase.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/dependency-cruiser.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/elysia.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/fluentui.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/formatjs.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/google-model-viewer.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/graphql-yoga.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/ice.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/jotai.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/langchainjs.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/lens-app.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/lingui.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/msw.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/next-auth.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/nightwatch.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/nx.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/orama.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/payload-cms.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/react-joyride.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/react-leaflet.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/redwoodjs.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/swc-plugin-vue-jsx.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tinacms.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tldraw.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tsdx.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tsup.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/umi.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/unblock-netease-music.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/unleash.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/valtio.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/waku.ts (100%) diff --git a/.github/swc-ecosystem-ci/todos/adonisjs-core.ts b/.github/swc-ecosystem-ci/tests/adonisjs-core.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/adonisjs-core.ts rename to .github/swc-ecosystem-ci/tests/adonisjs-core.ts diff --git a/.github/swc-ecosystem-ci/todos/backstage.ts b/.github/swc-ecosystem-ci/tests/backstage.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/backstage.ts rename to .github/swc-ecosystem-ci/tests/backstage.ts diff --git a/.github/swc-ecosystem-ci/todos/blueprint.ts b/.github/swc-ecosystem-ci/tests/blueprint.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/blueprint.ts rename to .github/swc-ecosystem-ci/tests/blueprint.ts diff --git a/.github/swc-ecosystem-ci/todos/budibase.ts b/.github/swc-ecosystem-ci/tests/budibase.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/budibase.ts rename to .github/swc-ecosystem-ci/tests/budibase.ts diff --git a/.github/swc-ecosystem-ci/todos/dependency-cruiser.ts b/.github/swc-ecosystem-ci/tests/dependency-cruiser.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/dependency-cruiser.ts rename to .github/swc-ecosystem-ci/tests/dependency-cruiser.ts diff --git a/.github/swc-ecosystem-ci/todos/elysia.ts b/.github/swc-ecosystem-ci/tests/elysia.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/elysia.ts rename to .github/swc-ecosystem-ci/tests/elysia.ts diff --git a/.github/swc-ecosystem-ci/todos/fluentui.ts b/.github/swc-ecosystem-ci/tests/fluentui.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/fluentui.ts rename to .github/swc-ecosystem-ci/tests/fluentui.ts diff --git a/.github/swc-ecosystem-ci/todos/formatjs.ts b/.github/swc-ecosystem-ci/tests/formatjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/formatjs.ts rename to .github/swc-ecosystem-ci/tests/formatjs.ts diff --git a/.github/swc-ecosystem-ci/todos/google-model-viewer.ts b/.github/swc-ecosystem-ci/tests/google-model-viewer.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/google-model-viewer.ts rename to .github/swc-ecosystem-ci/tests/google-model-viewer.ts diff --git a/.github/swc-ecosystem-ci/todos/graphql-yoga.ts b/.github/swc-ecosystem-ci/tests/graphql-yoga.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/graphql-yoga.ts rename to .github/swc-ecosystem-ci/tests/graphql-yoga.ts diff --git a/.github/swc-ecosystem-ci/todos/ice.ts b/.github/swc-ecosystem-ci/tests/ice.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/ice.ts rename to .github/swc-ecosystem-ci/tests/ice.ts diff --git a/.github/swc-ecosystem-ci/todos/jotai.ts b/.github/swc-ecosystem-ci/tests/jotai.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/jotai.ts rename to .github/swc-ecosystem-ci/tests/jotai.ts diff --git a/.github/swc-ecosystem-ci/todos/langchainjs.ts b/.github/swc-ecosystem-ci/tests/langchainjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/langchainjs.ts rename to .github/swc-ecosystem-ci/tests/langchainjs.ts diff --git a/.github/swc-ecosystem-ci/todos/lens-app.ts b/.github/swc-ecosystem-ci/tests/lens-app.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/lens-app.ts rename to .github/swc-ecosystem-ci/tests/lens-app.ts diff --git a/.github/swc-ecosystem-ci/todos/lingui.ts b/.github/swc-ecosystem-ci/tests/lingui.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/lingui.ts rename to .github/swc-ecosystem-ci/tests/lingui.ts diff --git a/.github/swc-ecosystem-ci/todos/msw.ts b/.github/swc-ecosystem-ci/tests/msw.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/msw.ts rename to .github/swc-ecosystem-ci/tests/msw.ts diff --git a/.github/swc-ecosystem-ci/todos/next-auth.ts b/.github/swc-ecosystem-ci/tests/next-auth.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/next-auth.ts rename to .github/swc-ecosystem-ci/tests/next-auth.ts diff --git a/.github/swc-ecosystem-ci/todos/nightwatch.ts b/.github/swc-ecosystem-ci/tests/nightwatch.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/nightwatch.ts rename to .github/swc-ecosystem-ci/tests/nightwatch.ts diff --git a/.github/swc-ecosystem-ci/todos/nx.ts b/.github/swc-ecosystem-ci/tests/nx.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/nx.ts rename to .github/swc-ecosystem-ci/tests/nx.ts diff --git a/.github/swc-ecosystem-ci/todos/orama.ts b/.github/swc-ecosystem-ci/tests/orama.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/orama.ts rename to .github/swc-ecosystem-ci/tests/orama.ts diff --git a/.github/swc-ecosystem-ci/todos/payload-cms.ts b/.github/swc-ecosystem-ci/tests/payload-cms.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/payload-cms.ts rename to .github/swc-ecosystem-ci/tests/payload-cms.ts diff --git a/.github/swc-ecosystem-ci/todos/react-joyride.ts b/.github/swc-ecosystem-ci/tests/react-joyride.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/react-joyride.ts rename to .github/swc-ecosystem-ci/tests/react-joyride.ts diff --git a/.github/swc-ecosystem-ci/todos/react-leaflet.ts b/.github/swc-ecosystem-ci/tests/react-leaflet.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/react-leaflet.ts rename to .github/swc-ecosystem-ci/tests/react-leaflet.ts diff --git a/.github/swc-ecosystem-ci/todos/redwoodjs.ts b/.github/swc-ecosystem-ci/tests/redwoodjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/redwoodjs.ts rename to .github/swc-ecosystem-ci/tests/redwoodjs.ts diff --git a/.github/swc-ecosystem-ci/todos/swc-plugin-vue-jsx.ts b/.github/swc-ecosystem-ci/tests/swc-plugin-vue-jsx.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/swc-plugin-vue-jsx.ts rename to .github/swc-ecosystem-ci/tests/swc-plugin-vue-jsx.ts diff --git a/.github/swc-ecosystem-ci/todos/tinacms.ts b/.github/swc-ecosystem-ci/tests/tinacms.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tinacms.ts rename to .github/swc-ecosystem-ci/tests/tinacms.ts diff --git a/.github/swc-ecosystem-ci/todos/tldraw.ts b/.github/swc-ecosystem-ci/tests/tldraw.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tldraw.ts rename to .github/swc-ecosystem-ci/tests/tldraw.ts diff --git a/.github/swc-ecosystem-ci/todos/tsdx.ts b/.github/swc-ecosystem-ci/tests/tsdx.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tsdx.ts rename to .github/swc-ecosystem-ci/tests/tsdx.ts diff --git a/.github/swc-ecosystem-ci/todos/tsup.ts b/.github/swc-ecosystem-ci/tests/tsup.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tsup.ts rename to .github/swc-ecosystem-ci/tests/tsup.ts diff --git a/.github/swc-ecosystem-ci/todos/umi.ts b/.github/swc-ecosystem-ci/tests/umi.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/umi.ts rename to .github/swc-ecosystem-ci/tests/umi.ts diff --git a/.github/swc-ecosystem-ci/todos/unblock-netease-music.ts b/.github/swc-ecosystem-ci/tests/unblock-netease-music.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/unblock-netease-music.ts rename to .github/swc-ecosystem-ci/tests/unblock-netease-music.ts diff --git a/.github/swc-ecosystem-ci/todos/unleash.ts b/.github/swc-ecosystem-ci/tests/unleash.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/unleash.ts rename to .github/swc-ecosystem-ci/tests/unleash.ts diff --git a/.github/swc-ecosystem-ci/todos/valtio.ts b/.github/swc-ecosystem-ci/tests/valtio.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/valtio.ts rename to .github/swc-ecosystem-ci/tests/valtio.ts diff --git a/.github/swc-ecosystem-ci/todos/waku.ts b/.github/swc-ecosystem-ci/tests/waku.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/waku.ts rename to .github/swc-ecosystem-ci/tests/waku.ts From 0bd48b2ccba891b72bf084ff33e528a3eba2f85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 13:49:02 +0900 Subject: [PATCH 06/10] Revert --- .github/swc-ecosystem-ci/{tests => todos}/adonisjs-core.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/backstage.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/blueprint.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/budibase.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/dependency-cruiser.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/elysia.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/fluentui.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/formatjs.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/google-model-viewer.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/graphql-yoga.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/ice.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/jotai.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/langchainjs.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/lens-app.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/lingui.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/msw.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/next-auth.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/nightwatch.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/nx.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/orama.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/payload-cms.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/react-joyride.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/react-leaflet.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/redwoodjs.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/swc-plugin-vue-jsx.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/tinacms.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/tldraw.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/tsdx.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/tsup.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/umi.ts | 0 .../swc-ecosystem-ci/{tests => todos}/unblock-netease-music.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/unleash.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/valtio.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/waku.ts | 0 34 files changed, 0 insertions(+), 0 deletions(-) rename .github/swc-ecosystem-ci/{tests => todos}/adonisjs-core.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/backstage.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/blueprint.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/budibase.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/dependency-cruiser.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/elysia.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/fluentui.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/formatjs.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/google-model-viewer.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/graphql-yoga.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/ice.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/jotai.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/langchainjs.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/lens-app.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/lingui.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/msw.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/next-auth.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/nightwatch.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/nx.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/orama.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/payload-cms.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/react-joyride.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/react-leaflet.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/redwoodjs.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/swc-plugin-vue-jsx.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/tinacms.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/tldraw.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/tsdx.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/tsup.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/umi.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/unblock-netease-music.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/unleash.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/valtio.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/waku.ts (100%) diff --git a/.github/swc-ecosystem-ci/tests/adonisjs-core.ts b/.github/swc-ecosystem-ci/todos/adonisjs-core.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/adonisjs-core.ts rename to .github/swc-ecosystem-ci/todos/adonisjs-core.ts diff --git a/.github/swc-ecosystem-ci/tests/backstage.ts b/.github/swc-ecosystem-ci/todos/backstage.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/backstage.ts rename to .github/swc-ecosystem-ci/todos/backstage.ts diff --git a/.github/swc-ecosystem-ci/tests/blueprint.ts b/.github/swc-ecosystem-ci/todos/blueprint.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/blueprint.ts rename to .github/swc-ecosystem-ci/todos/blueprint.ts diff --git a/.github/swc-ecosystem-ci/tests/budibase.ts b/.github/swc-ecosystem-ci/todos/budibase.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/budibase.ts rename to .github/swc-ecosystem-ci/todos/budibase.ts diff --git a/.github/swc-ecosystem-ci/tests/dependency-cruiser.ts b/.github/swc-ecosystem-ci/todos/dependency-cruiser.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/dependency-cruiser.ts rename to .github/swc-ecosystem-ci/todos/dependency-cruiser.ts diff --git a/.github/swc-ecosystem-ci/tests/elysia.ts b/.github/swc-ecosystem-ci/todos/elysia.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/elysia.ts rename to .github/swc-ecosystem-ci/todos/elysia.ts diff --git a/.github/swc-ecosystem-ci/tests/fluentui.ts b/.github/swc-ecosystem-ci/todos/fluentui.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/fluentui.ts rename to .github/swc-ecosystem-ci/todos/fluentui.ts diff --git a/.github/swc-ecosystem-ci/tests/formatjs.ts b/.github/swc-ecosystem-ci/todos/formatjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/formatjs.ts rename to .github/swc-ecosystem-ci/todos/formatjs.ts diff --git a/.github/swc-ecosystem-ci/tests/google-model-viewer.ts b/.github/swc-ecosystem-ci/todos/google-model-viewer.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/google-model-viewer.ts rename to .github/swc-ecosystem-ci/todos/google-model-viewer.ts diff --git a/.github/swc-ecosystem-ci/tests/graphql-yoga.ts b/.github/swc-ecosystem-ci/todos/graphql-yoga.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/graphql-yoga.ts rename to .github/swc-ecosystem-ci/todos/graphql-yoga.ts diff --git a/.github/swc-ecosystem-ci/tests/ice.ts b/.github/swc-ecosystem-ci/todos/ice.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/ice.ts rename to .github/swc-ecosystem-ci/todos/ice.ts diff --git a/.github/swc-ecosystem-ci/tests/jotai.ts b/.github/swc-ecosystem-ci/todos/jotai.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/jotai.ts rename to .github/swc-ecosystem-ci/todos/jotai.ts diff --git a/.github/swc-ecosystem-ci/tests/langchainjs.ts b/.github/swc-ecosystem-ci/todos/langchainjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/langchainjs.ts rename to .github/swc-ecosystem-ci/todos/langchainjs.ts diff --git a/.github/swc-ecosystem-ci/tests/lens-app.ts b/.github/swc-ecosystem-ci/todos/lens-app.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/lens-app.ts rename to .github/swc-ecosystem-ci/todos/lens-app.ts diff --git a/.github/swc-ecosystem-ci/tests/lingui.ts b/.github/swc-ecosystem-ci/todos/lingui.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/lingui.ts rename to .github/swc-ecosystem-ci/todos/lingui.ts diff --git a/.github/swc-ecosystem-ci/tests/msw.ts b/.github/swc-ecosystem-ci/todos/msw.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/msw.ts rename to .github/swc-ecosystem-ci/todos/msw.ts diff --git a/.github/swc-ecosystem-ci/tests/next-auth.ts b/.github/swc-ecosystem-ci/todos/next-auth.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/next-auth.ts rename to .github/swc-ecosystem-ci/todos/next-auth.ts diff --git a/.github/swc-ecosystem-ci/tests/nightwatch.ts b/.github/swc-ecosystem-ci/todos/nightwatch.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/nightwatch.ts rename to .github/swc-ecosystem-ci/todos/nightwatch.ts diff --git a/.github/swc-ecosystem-ci/tests/nx.ts b/.github/swc-ecosystem-ci/todos/nx.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/nx.ts rename to .github/swc-ecosystem-ci/todos/nx.ts diff --git a/.github/swc-ecosystem-ci/tests/orama.ts b/.github/swc-ecosystem-ci/todos/orama.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/orama.ts rename to .github/swc-ecosystem-ci/todos/orama.ts diff --git a/.github/swc-ecosystem-ci/tests/payload-cms.ts b/.github/swc-ecosystem-ci/todos/payload-cms.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/payload-cms.ts rename to .github/swc-ecosystem-ci/todos/payload-cms.ts diff --git a/.github/swc-ecosystem-ci/tests/react-joyride.ts b/.github/swc-ecosystem-ci/todos/react-joyride.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/react-joyride.ts rename to .github/swc-ecosystem-ci/todos/react-joyride.ts diff --git a/.github/swc-ecosystem-ci/tests/react-leaflet.ts b/.github/swc-ecosystem-ci/todos/react-leaflet.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/react-leaflet.ts rename to .github/swc-ecosystem-ci/todos/react-leaflet.ts diff --git a/.github/swc-ecosystem-ci/tests/redwoodjs.ts b/.github/swc-ecosystem-ci/todos/redwoodjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/redwoodjs.ts rename to .github/swc-ecosystem-ci/todos/redwoodjs.ts diff --git a/.github/swc-ecosystem-ci/tests/swc-plugin-vue-jsx.ts b/.github/swc-ecosystem-ci/todos/swc-plugin-vue-jsx.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/swc-plugin-vue-jsx.ts rename to .github/swc-ecosystem-ci/todos/swc-plugin-vue-jsx.ts diff --git a/.github/swc-ecosystem-ci/tests/tinacms.ts b/.github/swc-ecosystem-ci/todos/tinacms.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/tinacms.ts rename to .github/swc-ecosystem-ci/todos/tinacms.ts diff --git a/.github/swc-ecosystem-ci/tests/tldraw.ts b/.github/swc-ecosystem-ci/todos/tldraw.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/tldraw.ts rename to .github/swc-ecosystem-ci/todos/tldraw.ts diff --git a/.github/swc-ecosystem-ci/tests/tsdx.ts b/.github/swc-ecosystem-ci/todos/tsdx.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/tsdx.ts rename to .github/swc-ecosystem-ci/todos/tsdx.ts diff --git a/.github/swc-ecosystem-ci/tests/tsup.ts b/.github/swc-ecosystem-ci/todos/tsup.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/tsup.ts rename to .github/swc-ecosystem-ci/todos/tsup.ts diff --git a/.github/swc-ecosystem-ci/tests/umi.ts b/.github/swc-ecosystem-ci/todos/umi.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/umi.ts rename to .github/swc-ecosystem-ci/todos/umi.ts diff --git a/.github/swc-ecosystem-ci/tests/unblock-netease-music.ts b/.github/swc-ecosystem-ci/todos/unblock-netease-music.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/unblock-netease-music.ts rename to .github/swc-ecosystem-ci/todos/unblock-netease-music.ts diff --git a/.github/swc-ecosystem-ci/tests/unleash.ts b/.github/swc-ecosystem-ci/todos/unleash.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/unleash.ts rename to .github/swc-ecosystem-ci/todos/unleash.ts diff --git a/.github/swc-ecosystem-ci/tests/valtio.ts b/.github/swc-ecosystem-ci/todos/valtio.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/valtio.ts rename to .github/swc-ecosystem-ci/todos/valtio.ts diff --git a/.github/swc-ecosystem-ci/tests/waku.ts b/.github/swc-ecosystem-ci/todos/waku.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/waku.ts rename to .github/swc-ecosystem-ci/todos/waku.ts From 6e97868fb1f6ebfa82e67ae3ba3f4ac09dff4b61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 13:57:15 +0900 Subject: [PATCH 07/10] Default to npm --- .github/swc-ecosystem-ci/utils.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/swc-ecosystem-ci/utils.ts b/.github/swc-ecosystem-ci/utils.ts index 0feb4b37d189..3cec1ccf72b4 100644 --- a/.github/swc-ecosystem-ci/utils.ts +++ b/.github/swc-ecosystem-ci/utils.ts @@ -230,9 +230,10 @@ export async function runInRepo(options: RunOptions & RepoOptions) { cd(dir); } if (options.agent == null) { - const detectedAgent = await detect({ cwd: dir, autoInstall: true }); + let detectedAgent = await detect({ cwd: dir, autoInstall: true }); if (detectedAgent == null) { - throw new Error(`Failed to detect packagemanager in ${dir}`); + console.error(`Failed to detect packagemanager in ${dir}`); + detectedAgent = "npm"; } options.agent = detectedAgent; } From dc0a9ab2cb287223d69c2c97e76a88bc548fcecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 14:05:21 +0900 Subject: [PATCH 08/10] Enable all --- .github/swc-ecosystem-ci/{todos => tests}/adonisjs-core.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/backstage.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/blueprint.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/budibase.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/dependency-cruiser.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/elysia.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/fluentui.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/formatjs.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/google-model-viewer.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/graphql-yoga.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/ice.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/jotai.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/langchainjs.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/lens-app.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/lingui.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/msw.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/next-auth.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/nightwatch.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/nx.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/orama.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/payload-cms.ts | 0 .github/swc-ecosystem-ci/tests/react-dnd.ts | 1 + .github/swc-ecosystem-ci/{todos => tests}/react-joyride.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/react-leaflet.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/redwoodjs.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/swc-plugin-vue-jsx.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tinacms.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tldraw.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tsdx.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/tsup.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/umi.ts | 0 .../swc-ecosystem-ci/{todos => tests}/unblock-netease-music.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/unleash.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/valtio.ts | 0 .github/swc-ecosystem-ci/{todos => tests}/waku.ts | 0 35 files changed, 1 insertion(+) rename .github/swc-ecosystem-ci/{todos => tests}/adonisjs-core.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/backstage.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/blueprint.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/budibase.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/dependency-cruiser.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/elysia.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/fluentui.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/formatjs.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/google-model-viewer.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/graphql-yoga.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/ice.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/jotai.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/langchainjs.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/lens-app.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/lingui.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/msw.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/next-auth.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/nightwatch.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/nx.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/orama.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/payload-cms.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/react-joyride.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/react-leaflet.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/redwoodjs.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/swc-plugin-vue-jsx.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tinacms.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tldraw.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tsdx.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/tsup.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/umi.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/unblock-netease-music.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/unleash.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/valtio.ts (100%) rename .github/swc-ecosystem-ci/{todos => tests}/waku.ts (100%) diff --git a/.github/swc-ecosystem-ci/todos/adonisjs-core.ts b/.github/swc-ecosystem-ci/tests/adonisjs-core.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/adonisjs-core.ts rename to .github/swc-ecosystem-ci/tests/adonisjs-core.ts diff --git a/.github/swc-ecosystem-ci/todos/backstage.ts b/.github/swc-ecosystem-ci/tests/backstage.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/backstage.ts rename to .github/swc-ecosystem-ci/tests/backstage.ts diff --git a/.github/swc-ecosystem-ci/todos/blueprint.ts b/.github/swc-ecosystem-ci/tests/blueprint.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/blueprint.ts rename to .github/swc-ecosystem-ci/tests/blueprint.ts diff --git a/.github/swc-ecosystem-ci/todos/budibase.ts b/.github/swc-ecosystem-ci/tests/budibase.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/budibase.ts rename to .github/swc-ecosystem-ci/tests/budibase.ts diff --git a/.github/swc-ecosystem-ci/todos/dependency-cruiser.ts b/.github/swc-ecosystem-ci/tests/dependency-cruiser.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/dependency-cruiser.ts rename to .github/swc-ecosystem-ci/tests/dependency-cruiser.ts diff --git a/.github/swc-ecosystem-ci/todos/elysia.ts b/.github/swc-ecosystem-ci/tests/elysia.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/elysia.ts rename to .github/swc-ecosystem-ci/tests/elysia.ts diff --git a/.github/swc-ecosystem-ci/todos/fluentui.ts b/.github/swc-ecosystem-ci/tests/fluentui.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/fluentui.ts rename to .github/swc-ecosystem-ci/tests/fluentui.ts diff --git a/.github/swc-ecosystem-ci/todos/formatjs.ts b/.github/swc-ecosystem-ci/tests/formatjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/formatjs.ts rename to .github/swc-ecosystem-ci/tests/formatjs.ts diff --git a/.github/swc-ecosystem-ci/todos/google-model-viewer.ts b/.github/swc-ecosystem-ci/tests/google-model-viewer.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/google-model-viewer.ts rename to .github/swc-ecosystem-ci/tests/google-model-viewer.ts diff --git a/.github/swc-ecosystem-ci/todos/graphql-yoga.ts b/.github/swc-ecosystem-ci/tests/graphql-yoga.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/graphql-yoga.ts rename to .github/swc-ecosystem-ci/tests/graphql-yoga.ts diff --git a/.github/swc-ecosystem-ci/todos/ice.ts b/.github/swc-ecosystem-ci/tests/ice.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/ice.ts rename to .github/swc-ecosystem-ci/tests/ice.ts diff --git a/.github/swc-ecosystem-ci/todos/jotai.ts b/.github/swc-ecosystem-ci/tests/jotai.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/jotai.ts rename to .github/swc-ecosystem-ci/tests/jotai.ts diff --git a/.github/swc-ecosystem-ci/todos/langchainjs.ts b/.github/swc-ecosystem-ci/tests/langchainjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/langchainjs.ts rename to .github/swc-ecosystem-ci/tests/langchainjs.ts diff --git a/.github/swc-ecosystem-ci/todos/lens-app.ts b/.github/swc-ecosystem-ci/tests/lens-app.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/lens-app.ts rename to .github/swc-ecosystem-ci/tests/lens-app.ts diff --git a/.github/swc-ecosystem-ci/todos/lingui.ts b/.github/swc-ecosystem-ci/tests/lingui.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/lingui.ts rename to .github/swc-ecosystem-ci/tests/lingui.ts diff --git a/.github/swc-ecosystem-ci/todos/msw.ts b/.github/swc-ecosystem-ci/tests/msw.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/msw.ts rename to .github/swc-ecosystem-ci/tests/msw.ts diff --git a/.github/swc-ecosystem-ci/todos/next-auth.ts b/.github/swc-ecosystem-ci/tests/next-auth.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/next-auth.ts rename to .github/swc-ecosystem-ci/tests/next-auth.ts diff --git a/.github/swc-ecosystem-ci/todos/nightwatch.ts b/.github/swc-ecosystem-ci/tests/nightwatch.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/nightwatch.ts rename to .github/swc-ecosystem-ci/tests/nightwatch.ts diff --git a/.github/swc-ecosystem-ci/todos/nx.ts b/.github/swc-ecosystem-ci/tests/nx.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/nx.ts rename to .github/swc-ecosystem-ci/tests/nx.ts diff --git a/.github/swc-ecosystem-ci/todos/orama.ts b/.github/swc-ecosystem-ci/tests/orama.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/orama.ts rename to .github/swc-ecosystem-ci/tests/orama.ts diff --git a/.github/swc-ecosystem-ci/todos/payload-cms.ts b/.github/swc-ecosystem-ci/tests/payload-cms.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/payload-cms.ts rename to .github/swc-ecosystem-ci/tests/payload-cms.ts diff --git a/.github/swc-ecosystem-ci/tests/react-dnd.ts b/.github/swc-ecosystem-ci/tests/react-dnd.ts index 723fc8c5e48e..b0efdf51507f 100644 --- a/.github/swc-ecosystem-ci/tests/react-dnd.ts +++ b/.github/swc-ecosystem-ci/tests/react-dnd.ts @@ -8,5 +8,6 @@ export async function test(options: RunOptions) { branch: "main", build: "build", test: ["test"], + agent: "yarn@berry", }); } diff --git a/.github/swc-ecosystem-ci/todos/react-joyride.ts b/.github/swc-ecosystem-ci/tests/react-joyride.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/react-joyride.ts rename to .github/swc-ecosystem-ci/tests/react-joyride.ts diff --git a/.github/swc-ecosystem-ci/todos/react-leaflet.ts b/.github/swc-ecosystem-ci/tests/react-leaflet.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/react-leaflet.ts rename to .github/swc-ecosystem-ci/tests/react-leaflet.ts diff --git a/.github/swc-ecosystem-ci/todos/redwoodjs.ts b/.github/swc-ecosystem-ci/tests/redwoodjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/redwoodjs.ts rename to .github/swc-ecosystem-ci/tests/redwoodjs.ts diff --git a/.github/swc-ecosystem-ci/todos/swc-plugin-vue-jsx.ts b/.github/swc-ecosystem-ci/tests/swc-plugin-vue-jsx.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/swc-plugin-vue-jsx.ts rename to .github/swc-ecosystem-ci/tests/swc-plugin-vue-jsx.ts diff --git a/.github/swc-ecosystem-ci/todos/tinacms.ts b/.github/swc-ecosystem-ci/tests/tinacms.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tinacms.ts rename to .github/swc-ecosystem-ci/tests/tinacms.ts diff --git a/.github/swc-ecosystem-ci/todos/tldraw.ts b/.github/swc-ecosystem-ci/tests/tldraw.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tldraw.ts rename to .github/swc-ecosystem-ci/tests/tldraw.ts diff --git a/.github/swc-ecosystem-ci/todos/tsdx.ts b/.github/swc-ecosystem-ci/tests/tsdx.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tsdx.ts rename to .github/swc-ecosystem-ci/tests/tsdx.ts diff --git a/.github/swc-ecosystem-ci/todos/tsup.ts b/.github/swc-ecosystem-ci/tests/tsup.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/tsup.ts rename to .github/swc-ecosystem-ci/tests/tsup.ts diff --git a/.github/swc-ecosystem-ci/todos/umi.ts b/.github/swc-ecosystem-ci/tests/umi.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/umi.ts rename to .github/swc-ecosystem-ci/tests/umi.ts diff --git a/.github/swc-ecosystem-ci/todos/unblock-netease-music.ts b/.github/swc-ecosystem-ci/tests/unblock-netease-music.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/unblock-netease-music.ts rename to .github/swc-ecosystem-ci/tests/unblock-netease-music.ts diff --git a/.github/swc-ecosystem-ci/todos/unleash.ts b/.github/swc-ecosystem-ci/tests/unleash.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/unleash.ts rename to .github/swc-ecosystem-ci/tests/unleash.ts diff --git a/.github/swc-ecosystem-ci/todos/valtio.ts b/.github/swc-ecosystem-ci/tests/valtio.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/valtio.ts rename to .github/swc-ecosystem-ci/tests/valtio.ts diff --git a/.github/swc-ecosystem-ci/todos/waku.ts b/.github/swc-ecosystem-ci/tests/waku.ts similarity index 100% rename from .github/swc-ecosystem-ci/todos/waku.ts rename to .github/swc-ecosystem-ci/tests/waku.ts From 08eaa59e42c670cb7421f82fbb4a311d3358f550 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 14:19:15 +0900 Subject: [PATCH 09/10] Disable --- .github/swc-ecosystem-ci/{tests => todos}/adonisjs-core.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/backstage.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/budibase.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/dependency-cruiser.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/elysia.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/fluentui.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/formatjs.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/google-model-viewer.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/ice.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/jotai.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/langchainjs.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/lens-app.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/lingui.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/msw.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/next-auth.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/nightwatch.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/nx.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/orama.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/payload-cms.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/redwoodjs.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/tsdx.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/tsup.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/unleash.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/valtio.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/waku.ts | 0 25 files changed, 0 insertions(+), 0 deletions(-) rename .github/swc-ecosystem-ci/{tests => todos}/adonisjs-core.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/backstage.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/budibase.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/dependency-cruiser.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/elysia.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/fluentui.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/formatjs.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/google-model-viewer.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/ice.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/jotai.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/langchainjs.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/lens-app.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/lingui.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/msw.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/next-auth.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/nightwatch.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/nx.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/orama.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/payload-cms.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/redwoodjs.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/tsdx.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/tsup.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/unleash.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/valtio.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/waku.ts (100%) diff --git a/.github/swc-ecosystem-ci/tests/adonisjs-core.ts b/.github/swc-ecosystem-ci/todos/adonisjs-core.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/adonisjs-core.ts rename to .github/swc-ecosystem-ci/todos/adonisjs-core.ts diff --git a/.github/swc-ecosystem-ci/tests/backstage.ts b/.github/swc-ecosystem-ci/todos/backstage.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/backstage.ts rename to .github/swc-ecosystem-ci/todos/backstage.ts diff --git a/.github/swc-ecosystem-ci/tests/budibase.ts b/.github/swc-ecosystem-ci/todos/budibase.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/budibase.ts rename to .github/swc-ecosystem-ci/todos/budibase.ts diff --git a/.github/swc-ecosystem-ci/tests/dependency-cruiser.ts b/.github/swc-ecosystem-ci/todos/dependency-cruiser.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/dependency-cruiser.ts rename to .github/swc-ecosystem-ci/todos/dependency-cruiser.ts diff --git a/.github/swc-ecosystem-ci/tests/elysia.ts b/.github/swc-ecosystem-ci/todos/elysia.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/elysia.ts rename to .github/swc-ecosystem-ci/todos/elysia.ts diff --git a/.github/swc-ecosystem-ci/tests/fluentui.ts b/.github/swc-ecosystem-ci/todos/fluentui.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/fluentui.ts rename to .github/swc-ecosystem-ci/todos/fluentui.ts diff --git a/.github/swc-ecosystem-ci/tests/formatjs.ts b/.github/swc-ecosystem-ci/todos/formatjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/formatjs.ts rename to .github/swc-ecosystem-ci/todos/formatjs.ts diff --git a/.github/swc-ecosystem-ci/tests/google-model-viewer.ts b/.github/swc-ecosystem-ci/todos/google-model-viewer.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/google-model-viewer.ts rename to .github/swc-ecosystem-ci/todos/google-model-viewer.ts diff --git a/.github/swc-ecosystem-ci/tests/ice.ts b/.github/swc-ecosystem-ci/todos/ice.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/ice.ts rename to .github/swc-ecosystem-ci/todos/ice.ts diff --git a/.github/swc-ecosystem-ci/tests/jotai.ts b/.github/swc-ecosystem-ci/todos/jotai.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/jotai.ts rename to .github/swc-ecosystem-ci/todos/jotai.ts diff --git a/.github/swc-ecosystem-ci/tests/langchainjs.ts b/.github/swc-ecosystem-ci/todos/langchainjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/langchainjs.ts rename to .github/swc-ecosystem-ci/todos/langchainjs.ts diff --git a/.github/swc-ecosystem-ci/tests/lens-app.ts b/.github/swc-ecosystem-ci/todos/lens-app.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/lens-app.ts rename to .github/swc-ecosystem-ci/todos/lens-app.ts diff --git a/.github/swc-ecosystem-ci/tests/lingui.ts b/.github/swc-ecosystem-ci/todos/lingui.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/lingui.ts rename to .github/swc-ecosystem-ci/todos/lingui.ts diff --git a/.github/swc-ecosystem-ci/tests/msw.ts b/.github/swc-ecosystem-ci/todos/msw.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/msw.ts rename to .github/swc-ecosystem-ci/todos/msw.ts diff --git a/.github/swc-ecosystem-ci/tests/next-auth.ts b/.github/swc-ecosystem-ci/todos/next-auth.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/next-auth.ts rename to .github/swc-ecosystem-ci/todos/next-auth.ts diff --git a/.github/swc-ecosystem-ci/tests/nightwatch.ts b/.github/swc-ecosystem-ci/todos/nightwatch.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/nightwatch.ts rename to .github/swc-ecosystem-ci/todos/nightwatch.ts diff --git a/.github/swc-ecosystem-ci/tests/nx.ts b/.github/swc-ecosystem-ci/todos/nx.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/nx.ts rename to .github/swc-ecosystem-ci/todos/nx.ts diff --git a/.github/swc-ecosystem-ci/tests/orama.ts b/.github/swc-ecosystem-ci/todos/orama.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/orama.ts rename to .github/swc-ecosystem-ci/todos/orama.ts diff --git a/.github/swc-ecosystem-ci/tests/payload-cms.ts b/.github/swc-ecosystem-ci/todos/payload-cms.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/payload-cms.ts rename to .github/swc-ecosystem-ci/todos/payload-cms.ts diff --git a/.github/swc-ecosystem-ci/tests/redwoodjs.ts b/.github/swc-ecosystem-ci/todos/redwoodjs.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/redwoodjs.ts rename to .github/swc-ecosystem-ci/todos/redwoodjs.ts diff --git a/.github/swc-ecosystem-ci/tests/tsdx.ts b/.github/swc-ecosystem-ci/todos/tsdx.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/tsdx.ts rename to .github/swc-ecosystem-ci/todos/tsdx.ts diff --git a/.github/swc-ecosystem-ci/tests/tsup.ts b/.github/swc-ecosystem-ci/todos/tsup.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/tsup.ts rename to .github/swc-ecosystem-ci/todos/tsup.ts diff --git a/.github/swc-ecosystem-ci/tests/unleash.ts b/.github/swc-ecosystem-ci/todos/unleash.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/unleash.ts rename to .github/swc-ecosystem-ci/todos/unleash.ts diff --git a/.github/swc-ecosystem-ci/tests/valtio.ts b/.github/swc-ecosystem-ci/todos/valtio.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/valtio.ts rename to .github/swc-ecosystem-ci/todos/valtio.ts diff --git a/.github/swc-ecosystem-ci/tests/waku.ts b/.github/swc-ecosystem-ci/todos/waku.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/waku.ts rename to .github/swc-ecosystem-ci/todos/waku.ts From af9b83d3f5a05a85b62cde1c3b9619fb94c906b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4=20=28Donny=29?= Date: Mon, 17 Jun 2024 14:31:20 +0900 Subject: [PATCH 10/10] Disable --- .github/swc-ecosystem-ci/{tests => todos}/blueprint.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/medusa.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/react-dnd.ts | 0 .github/swc-ecosystem-ci/{tests => todos}/tinacms.ts | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename .github/swc-ecosystem-ci/{tests => todos}/blueprint.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/medusa.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/react-dnd.ts (100%) rename .github/swc-ecosystem-ci/{tests => todos}/tinacms.ts (100%) diff --git a/.github/swc-ecosystem-ci/tests/blueprint.ts b/.github/swc-ecosystem-ci/todos/blueprint.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/blueprint.ts rename to .github/swc-ecosystem-ci/todos/blueprint.ts diff --git a/.github/swc-ecosystem-ci/tests/medusa.ts b/.github/swc-ecosystem-ci/todos/medusa.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/medusa.ts rename to .github/swc-ecosystem-ci/todos/medusa.ts diff --git a/.github/swc-ecosystem-ci/tests/react-dnd.ts b/.github/swc-ecosystem-ci/todos/react-dnd.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/react-dnd.ts rename to .github/swc-ecosystem-ci/todos/react-dnd.ts diff --git a/.github/swc-ecosystem-ci/tests/tinacms.ts b/.github/swc-ecosystem-ci/todos/tinacms.ts similarity index 100% rename from .github/swc-ecosystem-ci/tests/tinacms.ts rename to .github/swc-ecosystem-ci/todos/tinacms.ts