From bf7143a8488d098ec0f7167c2178d7fd1fe494fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 18 Oct 2025 20:23:56 +0900 Subject: [PATCH 1/5] ci: create `ci-bun.yml` --- .github/workflows/ci-bun.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ci-bun.yml diff --git a/.github/workflows/ci-bun.yml b/.github/workflows/ci-bun.yml new file mode 100644 index 00000000..9806f055 --- /dev/null +++ b/.github/workflows/ci-bun.yml @@ -0,0 +1,14 @@ +name: ci-bun + +on: + push: + branches: + - main + + pull_request: + branches: + - main + +jobs: + ci-bun: + uses: eslint/workflows/.github/workflows/ci-bun.yml@main From f0f21a30c8ce1c2478594caae183efeec3d50ef9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 18 Oct 2025 20:31:17 +0900 Subject: [PATCH 2/5] wip --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1a47d83c..0ba6c448 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "test": "npm test --workspaces --if-present", - "build": "npm run build --workspaces --if-present", + "build": "npm run build --workspaces", "lint": "eslint", "lint:fix": "eslint --fix" }, From 8c0f1fb300e4f0f2fc4248e41c30e9019e8a4231 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 18 Oct 2025 20:34:20 +0900 Subject: [PATCH 3/5] wip --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0ba6c448..9663ca0c 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "test": "npm test --workspaces --if-present", - "build": "npm run build --workspaces", + "build": "npm run build -w packages", "lint": "eslint", "lint:fix": "eslint --fix" }, From edc3eae70e89afb6f28b501b581008250ac827c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 18 Oct 2025 20:36:26 +0900 Subject: [PATCH 4/5] wip --- .github/workflows/ci-bun.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-bun.yml b/.github/workflows/ci-bun.yml index 9806f055..95339e94 100644 --- a/.github/workflows/ci-bun.yml +++ b/.github/workflows/ci-bun.yml @@ -11,4 +11,4 @@ on: jobs: ci-bun: - uses: eslint/workflows/.github/workflows/ci-bun.yml@main + uses: eslint/workflows/.github/workflows/ci-bun.yml@lumirlumir-patch-1 From 0c407f599ba66f2c3d336c069ccebed4046f34f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 18 Oct 2025 20:42:06 +0900 Subject: [PATCH 5/5] wip --- build.js | 11 +++++++++++ package.json | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 build.js diff --git a/build.js b/build.js new file mode 100644 index 00000000..2a4a6de0 --- /dev/null +++ b/build.js @@ -0,0 +1,11 @@ +//------------------------------------------------------------------------------ +// Imports +//------------------------------------------------------------------------------ + +import { execSync } from "node:child_process"; + +//------------------------------------------------------------------------------ +// Main Script +//------------------------------------------------------------------------------ + +execSync("npm run build --workspaces --if-present", { stdio: "inherit" }); diff --git a/package.json b/package.json index 9663ca0c..ec7d90ee 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "test": "npm test --workspaces --if-present", - "build": "npm run build -w packages", + "build": "node build.js", "lint": "eslint", "lint:fix": "eslint --fix" },