Skip to content

updating skills for codex #717

updating skills for codex

updating skills for codex #717

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.9"
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Lint
run: bun run lint
- name: Unit tests with coverage
run: bun run test:coverage
- name: Check coverage regression
run: node scripts/check-coverage.mjs
- name: Build
run: bun run build