Bun

指南运行时

在 GitHub Actions 中安装并运行 Bun

使用官方的 setup-bun GitHub Action 在您的 GitHub Actions runner 中安装 bun

workflow.yml
name: my-workflow
jobs:
  my-job:
    name: my-job
    runs-on: ubuntu-latest
    steps:
      # ...
      - uses: actions/checkout@v4
      - uses: oven-sh/setup-bun@v2

      # run any `bun` or `bunx` command
      - run: bun install
      - run: bun index.ts
      - run: bun run build

指定要安装的 Bun 版本

workflow.yml
name: my-workflow
jobs:
  my-job:
    name: my-job
    runs-on: ubuntu-latest
    steps:
      # ...
      - uses: oven-sh/setup-bun@v2
        with:
          bun-version: 1.2.0 # or "latest", "canary", <sha>

有关 setup-bun GitHub Action 的完整文档,请参阅 README.md