From 9eb1e8c346928e1292ac0e9f6b94a48c23b5185f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Wed, 15 Oct 2025 20:25:57 +0900 Subject: [PATCH 1/2] ci: centralize `ci-bun.yml` --- .github/workflows/bun-test.yml | 31 ------------------------------- .github/workflows/ci-bun.yml | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 31 deletions(-) delete mode 100644 .github/workflows/bun-test.yml create mode 100644 .github/workflows/ci-bun.yml diff --git a/.github/workflows/bun-test.yml b/.github/workflows/bun-test.yml deleted file mode 100644 index e592e12..0000000 --- a/.github/workflows/bun-test.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Bun CI - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [windows-latest, macOS-latest, ubuntu-latest] - bun: [latest] - - steps: - - uses: actions/checkout@v5 - - name: Use Bun ${{ matrix.bun }} ${{ matrix.os }} - uses: oven-sh/setup-bun@v2 - with: - bun-version: ${{ matrix.bun }} - - name: bun install, build, and test - run: | - bun install - bun run --bun test - env: - CI: true diff --git a/.github/workflows/ci-bun.yml b/.github/workflows/ci-bun.yml new file mode 100644 index 0000000..804dac2 --- /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@feat-create-ci-bun From 03fc16cb0582ce95b0d6176cb1c8132c7ca09d01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A3=A8=EB=B0=80LuMir?= Date: Sat, 18 Oct 2025 19:16:47 +0900 Subject: [PATCH 2/2] 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 804dac2..9806f05 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@feat-create-ci-bun + uses: eslint/workflows/.github/workflows/ci-bun.yml@main