Skip to content

feat: bun migration #225

feat: bun migration

feat: bun migration #225

Workflow file for this run

name: CI
on:
pull_request_target:
types: [opened, synchronize, reopened, edited]
branches: [main, develop]
permissions:
contents: read
pull-requests: read
jobs:
quality:
name: Lint, Format & Test (Bun)
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint & Format (Biome)
run: bun run biome:check
- name: Run tests with coverage
run: bun run test:coverage
- name: Upload coverage report
uses: actions/upload-artifact@v4
with:
name: coverage-html
path: coverage/lcov-report