fix: harden release gate and page delivery
Memind CI / Test, build, and release guards (push) Failing after 12m3s

This commit is contained in:
john
2026-07-26 14:32:01 +08:00
parent d3141a3e91
commit b1577a16e9
61 changed files with 6017 additions and 89 deletions
@@ -0,0 +1,9 @@
import assert from 'node:assert/strict';
import fs from 'node:fs';
import test from 'node:test';
test('DeepSeek proxy main guard is explicit so bundled worker cannot bind 18036', () => {
const source = fs.readFileSync(new URL('../deepseek-no-think-proxy.mjs', import.meta.url), 'utf8');
assert.match(source, /MEMIND_DEEPSEEK_PROXY_ENTRYPOINT === '1'/);
assert.match(source, /startDeepseekNoThinkProxy\(\)\.catch/);
});