Skip to content

Merge pull request #18 from ut-code/refactor #93

Merge pull request #18 from ut-code/refactor

Merge pull request #18 from ut-code/refactor #93

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
jobs:
biome:
name: biome lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check:lint
prettier:
name: biome format
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check:format
all-checks:
name: check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run check