Skip to content

Format codes by bun run check #2

Format codes by bun run check

Format codes by bun run check #2

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Check if codebase is up-to-date
run: |
bunx @biomejs/biome ci
git diff --compact-summary --exit-code || \
(echo; echo "Unexpected git diff detected"; exit 1)