feat: playground 강결합 데모 (단일 공유 intent 패널) + sidebar count 배지 #15
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] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| - name: Test (packages/estreuv) | |
| run: npm run test | |
| - name: Measure bundle (I1 LoC / I3 gzip) | |
| run: npm run measure | |
| - name: D1 per-tile LoC vs raw Lit (must stay ≤ +20%) | |
| run: npm run measure:d1 --workspace=packages/estreuv | |
| - name: Type declarations (D4 — .d.ts emit must stay green) | |
| run: npm run types --workspace=packages/estreuv | |
| - name: Fresh-install packaging smoke (published artifact contract) | |
| run: npm run smoke:pack --workspace=packages/estreuv | |
| - name: create-estreuv smoke test | |
| run: npm run test --workspace=packages/create-estreuv | |
| - name: playground pair-integration contract | |
| run: npm run test --workspace=packages/playground | |
| - name: docs build (VitePress) | |
| run: npm run build --workspace=packages/docs |