Skip to content
Open
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
5 changes: 5 additions & 0 deletions .codegraph/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CodeGraph data files — local to each machine, not for committing.
# Ignore everything in .codegraph/ except this file itself, so transient
# files (the database, daemon.pid, sockets, logs) never show up in git.
*
!.gitignore
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,40 @@ jobs:
- name: Test (unit + property + composition + F1)
run: cargo test --all-targets

npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 11.21.0

- uses: actions/setup-node@v4
with:
node-version: 24

- uses: denoland/setup-deno@v2

- name: Install JS deps (frozen)
run: pnpm install --frozen-lockfile

- name: Lint
run: pnpm lint

- name: Build + typecheck (launcher)
run: pnpm -r build && pnpm -r typecheck

- name: Launcher black-box suite (node)
run: node --test "tests/npm-launcher/*.test.mjs"

- name: Release scripts suite + matrix agreement gate (deno)
run: |
cd scripts
deno task lint
deno task test
deno task check-matrix

mutation:
runs-on: ubuntu-latest
steps:
Expand Down
Loading
Loading