使用官方 setup-bun
GitHub Action 在 GitHub Actions 執行器中安裝 bun
。
name: my-workflow
jobs:
my-job:
name: my-job
runs-on: ubuntu-latest
steps:
# ...
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1
# run any `bun` or `bunx` command
- run: bun install
若要指定要安裝的 Bun 版本
name: my-workflow
jobs:
my-job:
name: my-job
runs-on: ubuntu-latest
steps:
# ...
- uses: oven-sh/setup-bun@v1
with:
version: 0.7.0 # or "canary"
參閱 README.md 以取得 setup-bun
GitHub Action 的完整文件。