Skip to content
Closed
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
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,29 @@ jobs:
- name: Checkout code
uses: actions/checkout@v6

- name: Enable Corepack
run: corepack enable

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache: 'pnpm'

- name: Install dependencies
run: npm ci
run: pnpm install --frozen-lockfile

- name: Type check
run: npm run typecheck
run: pnpm run typecheck

- name: Build
run: npm run build
run: pnpm run build

- name: Run tests
run: npm test
run: pnpm test

- name: Decision ledger scan
run: npm run scan:rules
run: pnpm run scan:rules

- name: Upload contract index
uses: actions/upload-artifact@v6
Expand Down
4 changes: 2 additions & 2 deletions docs/decision-ledger/contract-index.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"generatedAt": "2026-01-30T07:07:22.057Z",
"generatedAt": "2026-02-03T18:06:35.932Z",
"root": "/home/runner/work/praxis/praxis",
"summary": {
"rules": 45,
"constraints": 8,
"files": 117
"files": 128
},
"rules": [
{
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.2.15",
"description": "The Full Plures Application Framework - declarative schemas, logic engine, component generation, and local-first data",
"type": "module",
"packageManager": "pnpm@10.28.2",
"workspaces": [
"packages/*",
"apps/*"
Expand Down
Loading