docs(seo): make the repo discoverable for what it actually is #31
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: "22" | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Typecheck | |
| run: npx tsc --noEmit | |
| - name: Unit test suites | |
| run: | | |
| npx tsx tests/three-day-continuity.test.ts | |
| npx tsx tests/auto-promote.test.ts | |
| npx tsx tests/extract.test.ts | |
| npx tsx tests/secret-stays-private.test.ts | |
| npx tsx tests/session-replay.test.ts | |
| npx tsx tests/lorebook.test.ts | |
| - name: Production build | |
| run: npx vite build |