language: node_js
node_js:
  - node

sudo: false

before_install:
  - curl -fsSL https://bun.sh/install | bash
  - export BUN_INSTALL="$HOME/.bun" && export PATH="$BUN_INSTALL/bin:$PATH"

script:
  - bun install --frozen-lockfile
  - bun run build
  - bun run test
