Skip to content

Commit dea4a31

Browse files
release: v0.15.0 — security hardening, tests, and CI
Harden ARIA policy enforcement (troubleshoot chaining, DB permission, session blacklist merge), fix SSH keep-alive, require master password on idle lock, add shared aiPolicy module with Vitest, and CI/release workflows.
1 parent 06fef19 commit dea4a31

23 files changed

Lines changed: 2373 additions & 307 deletions

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
validate:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v6
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v6
18+
with:
19+
node-version: 24
20+
cache: npm
21+
22+
- name: Install dependencies
23+
run: npm ci
24+
25+
- name: Typecheck
26+
run: npm run typecheck
27+
28+
- name: Test
29+
run: npm run test

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ jobs:
7474
- name: Install dependencies
7575
run: npm ci
7676

77+
- name: Typecheck & test
78+
run: npm run typecheck && npm run test
79+
7780
# ── macOS code signing ────────────────────────────────────────────────────
7881
# Requires repository secrets:
7982
# APPLE_CERTIFICATE — base64-encoded .p12 certificate

0 commit comments

Comments
 (0)