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
13 changes: 9 additions & 4 deletions .github/workflows/memory-reference-existence-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ name: memory-reference-existence-lint
# - Concurrency group + pinned runs-on
#
# See:
# - tools/hygiene/audit-memory-references.sh (the tool)
# - tools/hygiene/audit-memory-references.ts (the tool)
Comment thread
AceHack marked this conversation as resolved.
# - docs/aurora/2026-04-23-amara-memory-drift-alignment-
# claude-to-memories-drift.md (Amara ferry)

on:
pull_request:
paths:
- "memory/**"
- "tools/hygiene/audit-memory-references.sh"
- "tools/hygiene/audit-memory-references.ts"
- ".github/workflows/memory-reference-existence-lint.yml"
push:
branches: [main]
paths:
- "memory/**"
- "tools/hygiene/audit-memory-references.sh"
- "tools/hygiene/audit-memory-references.ts"
- ".github/workflows/memory-reference-existence-lint.yml"
workflow_dispatch: {}

Expand All @@ -51,8 +51,13 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Install toolchain via three-way-parity script (GOVERNANCE §24)
# Provides bun via mise's pin in .mise.toml. Same pattern as
# gate.yml + memory-index-duplicate-lint.yml (#1377).
run: ./tools/setup/install.sh

- name: run reference-existence lint
shell: bash
run: |
set -euo pipefail
tools/hygiene/audit-memory-references.sh --enforce
bun tools/hygiene/audit-memory-references.ts --enforce
Loading
Loading