@akira-tl/forgerelay 0.10.1 → 0.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/README.md +3 -2
- package/capabilities/shell-processes/GUIDE.md +1 -1
- package/dist/mcp/process/process-platform.js +60 -1
- package/dist/mcp/process/process-sessions.js +15 -21
- package/dist/runtime/shell/command-shell-runtime.js +55 -22
- package/dist/server.js +1 -1
- package/dist/subagents/sessions/execution.js +1 -1
- package/docs/gotchas.md +1 -4
- package/package.json +4 -2
- package/scripts/ci/cmd-acceptance.mjs +295 -0
- package/scripts/ci/powershell51-acceptance.mjs +483 -0
- package/scripts/ci/pwsh-acceptance.mjs +160 -13
- package/scripts/release/release-gate.test.mjs +14 -0
|
@@ -108,3 +108,17 @@ test("release workflow is tag-only and promotes the verified npm artifact withou
|
|
|
108
108
|
assert.doesNotMatch(workflow, /run:\s*\|/);
|
|
109
109
|
assert.doesNotMatch(workflow, /shell:\s*bash/);
|
|
110
110
|
});
|
|
111
|
+
|
|
112
|
+
test("manual Windows shell acceptance can never publish a release", async () => {
|
|
113
|
+
const workflow = await readFile(
|
|
114
|
+
resolve(repoRoot, ".github/workflows/windows-shell-acceptance.yml"),
|
|
115
|
+
"utf8",
|
|
116
|
+
);
|
|
117
|
+
assert.match(workflow, /workflow_dispatch:/);
|
|
118
|
+
assert.match(workflow, /runs-on:\s*windows-2022/);
|
|
119
|
+
assert.match(workflow, /run:\s*npm run pwsh:accept/);
|
|
120
|
+
assert.doesNotMatch(workflow, /release:publish/);
|
|
121
|
+
assert.doesNotMatch(workflow, /npm publish/);
|
|
122
|
+
assert.doesNotMatch(workflow, /contents:\s*write/);
|
|
123
|
+
assert.doesNotMatch(workflow, /id-token:\s*write/);
|
|
124
|
+
});
|