Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,19 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Run linter
- name: Validate metadata (protocol/schema)
run: pnpm run validate

- name: Lint metadata conventions (advisory)
run: pnpm run lint

continue-on-error: true

- name: TypeScript type checking
run: pnpm run typecheck

- name: Build project
run: pnpm run build

- name: Run tests
run: pnpm test

Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,14 @@ jobs:

- name: Check TypeScript compilation
run: pnpm run typecheck

- name: Run ESLint

- name: Validate metadata (protocol/schema)
run: pnpm run validate

- name: Lint metadata conventions (advisory)
run: pnpm run lint

continue-on-error: true

- name: Check for TODO comments
run: |
echo "Checking for TODO/FIXME comments..."
Expand Down
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@
"start": "objectstack start -p 4001",
"build": "objectstack build",
"typecheck": "tsc --noEmit",
"test": "objectstack test",
"validate": "objectstack validate",
"lint": "objectstack lint --skip-i18n",
"test": "vitest run",
"test:qa": "objectstack test",
"test:e2e": "playwright test",
"verify": "pnpm validate && pnpm typecheck && pnpm build && pnpm test",
"demo:reset": "rm -rf .objectstack/data && pnpm build && echo '✅ DB reset — start the server with: pnpm dev (or pnpm start). Seed data loads on first boot.'"
},
"packageManager": "pnpm@10.33.0",
Expand All @@ -37,7 +41,8 @@
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"typescript": "^6.0.3"
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=20",
Expand Down
Loading
Loading