Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
setup-bun
bun
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
name: my-workflow jobs: my-job: name: my-job runs-on: ubuntu-latest steps: # ... - uses: oven-sh/setup-bun@v2 with: bun-version: 1.3.3 # or "latest", "canary", <sha> #
Was this page helpful?