feat(assistant): persistent gloss cache — every message glossed once,… #750
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] | |
| permissions: | |
| contents: read | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - name: Build SDK | |
| # Emit dist (not just typecheck) — the console + agent UIs consume @proagentstore/sdk via its | |
| # built dist. Must run BEFORE anything that builds the console (incl. the e2e webserver). | |
| run: cd packages/sdk && npx tsc | |
| - run: pnpm test | |
| - run: pnpm exec playwright install --with-deps chromium | |
| - run: pnpm test:e2e | |
| - name: Typecheck API worker | |
| run: cd workers/api && npx tsc --noEmit | |
| - name: Typecheck coder-web | |
| run: cd agents/coder/web && npx tsc --noEmit | |
| - name: Typecheck Console | |
| run: cd store/console && npx tsc --noEmit | |
| - name: Build Console | |
| run: cd store/console && npx vite build |