Skip to content
This repository was archived by the owner on May 12, 2026. It is now read-only.

docs: comprehensive core utilities documentation + version sync fix #152

docs: comprehensive core utilities documentation + version sync fix

docs: comprehensive core utilities documentation + version sync fix #152

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install
- name: Run unit tests
run: bun run test:isolated
- name: Build framework
run: bun run build
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check for console.log in components
run: |
if grep -r "console\.log" src/components/*.js --include="*.js" | grep -v "// debug"; then
echo "⚠️ Found console.log statements in components"
exit 1
fi
echo "✅ No stray console.log found"