> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# ksylvest/bun

Install [Bun](https://bun.sh/) for building or testing your project .


## Commands

### install

Install Bun within a build.


## Examples

### example

The steps needed to use Bun on CircleCI


```yaml
version: '2.1'
orbs:
  bun: ksylvest/bun@1.0.1
jobs:
  example:
    docker:
      - image: cimg/base:stable
    steps:
      - checkout
      - bun/install
      - run: bun install
      - run: bun run main.ts
workflows:
  main:
    jobs:
      - example
```