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
19 changes: 0 additions & 19 deletions .codex/skills/anchorloop/.anchorloop-skill.json

This file was deleted.

107 changes: 0 additions & 107 deletions .codex/skills/anchorloop/SKILL.md

This file was deleted.

202 changes: 0 additions & 202 deletions .codex/skills/anchorloop/references/workflow.md

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ jobs:
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
with:
python-version: "3.11"
- run: npm ci --ignore-scripts
- run: npm run version:check
- run: npm test
- run: npm run pack:check
- name: Smoke-test the packed npx launcher
Expand Down Expand Up @@ -157,6 +159,7 @@ jobs:
Push-Location -LiteralPath $project
try {
Invoke-PackedAnchor add --apply
Invoke-PackedAnchor doctor --strict
foreach ($ignored in @(
"cache/example",
".cache/example",
Expand Down Expand Up @@ -213,7 +216,9 @@ jobs:
--corrective-refactor no `
--notes "No post-completion issue in the packed smoke window."
Invoke-PackedAnchor report --format json
Invoke-PackedAnchor doctor --strict
Invoke-PackedAnchor uninstall
Invoke-PackedAnchor doctor --strict
} finally {
Pop-Location
}
Expand All @@ -226,6 +231,16 @@ jobs:
throw "Packed lifecycle leaked $forbidden into the project."
}
}
foreach ($relative in @(".anchor/transactions/pending", ".anchor/outbox")) {
$directory = Join-Path $project $relative
if (-not (Test-Path -LiteralPath $directory -PathType Container)) {
throw "Packed lifecycle did not retain the expected $relative directory."
}
$residue = @(Get-ChildItem -LiteralPath $directory -Force -File)
if ($residue.Count -ne 0) {
throw "Packed lifecycle retained recovery residue in $relative."
}
}
} finally {
Remove-Item -LiteralPath $workspace -Recurse -Force -ErrorAction SilentlyContinue
}
Loading