Refactor: use Bun in CI

This commit is contained in:
2026-03-09 14:34:21 -07:00
parent ee92afc00b
commit 2f6bad6710

View File

@@ -1,13 +1,13 @@
on: workflow_call on: workflow_call
jobs: jobs:
npm-build-push: npm-build-push:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
with: with:
token: ${{secrets.GITHUB_TOKEN}} token: ${{secrets.GITHUB_TOKEN}}
- uses: actions/setup-node@v6 - uses: oven-sh/setup-bun@v2
with: with:
node-version: 24 bun-version: latest
- run: npm install && npm run build - 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 - 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