# Specify the operating system
os: linux
dist: focal  # Use Ubuntu 20.04 (focal) or another version as needed

# Install Bun
before_install:
  - curl -fsSL https://bun.sh/install | bash
  - export PATH="$HOME/.bun/bin:$PATH"

# Install project dependencies
install:
  - bun install

# Run the Bun test runner
script:
  - bun run test
