From 2f6bad6710715000b6b22b4da21b55bfae9c3665 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Mon, 9 Mar 2026 14:34:21 -0700 Subject: [PATCH] Refactor: use Bun in CI --- .github/workflows/BUILD.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/BUILD.yml b/.github/workflows/BUILD.yml index ca69d10..57eb6bf 100644 --- a/.github/workflows/BUILD.yml +++ b/.github/workflows/BUILD.yml @@ -1,13 +1,13 @@ on: workflow_call -jobs: - npm-build-push: +jobs: + npm-build-push: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 with: token: ${{secrets.GITHUB_TOKEN}} - - uses: actions/setup-node@v6 + - uses: oven-sh/setup-bun@v2 with: - node-version: 24 - - run: npm install && npm run build + bun-version: latest + - run: bun install && bun run build - run: git config user.name github-actions[bot] && git config user.email 41898282+github-actions[bot]@users.noreply.github.com && git add . && git commit -m "This build was committed by a bot." && git push