Skip to content

refactor: simplify interview-spec SKILL.md for clarity and focus #17

refactor: simplify interview-spec SKILL.md for clarity and focus

refactor: simplify interview-spec SKILL.md for clarity and focus #17

Workflow file for this run

name: Code Quality
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run check
- name: Type check
run: bun run check-types
- name: Unit tests
run: bun run test:unit