Skip to content

docs(seo): make the repo discoverable for what it actually is #31

docs(seo): make the repo discoverable for what it actually is

docs(seo): make the repo discoverable for what it actually is #31

Workflow file for this run

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