# Generated by chant migrate from input.yml

stages:
  - build
workflow:
  rules:
    - if: '$CI_PIPELINE_SOURCE == "push"'

build:
  image: oven/bun:latest
  cache:
    paths:
      - .bun/install/cache/
  script:
    - bun install
    - bun test
  stage: build
