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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" | |