Add release pipeline and upgrade toolchain to TypeScript 7
Publish snapshot / snapshot (push) Failing after 1m58s

Publishing infrastructure
- Three Gitea workflows: ci.yml (PRs, non-main pushes), publish-snapshot.yml
  (main -> Gitea under dist-tag @main) and release.yml (tags -> Gitea + npmjs)
- Tag-driven releases as <package-dir>-v<version>; the manifest stays the
  source of truth and release.yml refuses to run if tag and manifest disagree
- Every publish is idempotent: each step checks the registry first, so a run
  that fails on the second registry can simply be re-run
- Hard coverage gate (85% branches) shared by CI, the pre-push hook and local
  runs, since the thresholds live in vitest.config.ts rather than a CI flag
- README.PUBLISH.md documents the whole mechanism

Toolchain
- TypeScript 7 native compiler; drop tsgo and ts-node, use tsx for dev runs
- Biome 1.9 -> 2.x, Vitest 1 -> 4, zod 3 -> 4, inquirer 8 -> 14, pnpm 11.17.0
- Replace inquirer-checkbox-plus-prompt, which is peer-capped at inquirer <9,
  with enquirer's AutoComplete; the CubeSelection contract is unchanged
- Stand in for zod 4's removed z.AnyZodObject with a local AnyObjectSchema

Repo hygiene
- Stop tracking dist/; ignore coverage/, *.tsbuildinfo, .npmrc* and release.json
- Drop package-lock.json in favour of pnpm-lock.yaml

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Diedrichsen
2026-07-27 15:17:14 +02:00
parent 736c01216a
commit 587ff2cf47
126 changed files with 6065 additions and 7544 deletions
+27 -15
View File
@@ -35,7 +35,9 @@ describe('BuildContext.resolveCube', () => {
const cubeA = createTestCube('cube-a');
const cubes = { 'cube-a': cubeA };
const vars = new Variables();
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, { method: 'ssh' });
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, {
method: 'ssh',
});
await context.resolveCube('cube-a', 'host1');
@@ -49,7 +51,9 @@ describe('BuildContext.resolveCube', () => {
const cubeB = createTestCube('cube-b', () => ['cube-a']);
const cubes = { 'cube-a': cubeA, 'cube-b': cubeB };
const vars = new Variables();
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, { method: 'ssh' });
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, {
method: 'ssh',
});
await context.resolveCube('cube-b', 'host1');
@@ -62,35 +66,41 @@ describe('BuildContext.resolveCube', () => {
it('resolves dynamic dependencies based on variables', async () => {
const cubeA = createTestCube('cube-a');
const cubeB = createTestCube('cube-b');
const cubeC = createTestCube('cube-c', (vars) => vars.USE_A ? ['cube-a'] : ['cube-b']);
const cubeC = createTestCube('cube-c', (vars) => (vars.USE_A ? ['cube-a'] : ['cube-b']));
cubeC.manifest.schema = z.object({ USE_A: z.boolean().default(true) });
const cubes = { 'cube-a': cubeA, 'cube-b': cubeB, 'cube-c': cubeC };
// Test with USE_A = true
const vars1 = new Variables();
const context1 = new BuildContext(cubes, vars1, { cubes: [] } as any, { env: {} } as any, { method: 'ssh' });
const context1 = new BuildContext(cubes, vars1, { cubes: [] } as any, { env: {} } as any, {
method: 'ssh',
});
await context1.resolveCube('cube-c', 'host1');
expect(context1.deployCalls.map(c => c.cube)).toEqual(['cube-a', 'cube-c']);
expect(context1.deployCalls.map((c) => c.cube)).toEqual(['cube-a', 'cube-c']);
// Test with USE_A = false
const vars2 = new Variables();
vars2.assign('cube-c', 'params', { USE_A: false });
const context2 = new BuildContext(cubes, vars2, { cubes: [] } as any, { env: {} } as any, { method: 'ssh' });
const context2 = new BuildContext(cubes, vars2, { cubes: [] } as any, { env: {} } as any, {
method: 'ssh',
});
await context2.resolveCube('cube-c', 'host1');
expect(context2.deployCalls.map(c => c.cube)).toEqual(['cube-b', 'cube-c']);
expect(context2.deployCalls.map((c) => c.cube)).toEqual(['cube-b', 'cube-c']);
});
it('passes variables to dependencies', async () => {
const cubeA = createTestCube('cube-a');
cubeA.manifest.schema = z.object({ VAR: z.string() });
const cubeB = createTestCube('cube-b', () => [['cube-a', { VAR: 'from-b' }]]);
const cubes = { 'cube-a': cubeA, 'cube-b': cubeB };
const vars = new Variables();
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, { method: 'ssh' });
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, {
method: 'ssh',
});
await context.resolveCube('cube-b', 'host1');
@@ -102,14 +112,16 @@ describe('BuildContext.resolveCube', () => {
const cubeA = createTestCube('cube-a');
const cubeB = createTestCube('cube-b', () => ['cube-a']);
const cubeC = createTestCube('cube-c', () => ['cube-a', 'cube-b']);
const cubes = { 'cube-a': cubeA, 'cube-b': cubeB, 'cube-c': cubeC };
const vars = new Variables();
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, { method: 'ssh' });
const context = new BuildContext(cubes, vars, { cubes: [] } as any, { env: {} } as any, {
method: 'ssh',
});
await context.resolveCube('cube-c', 'host1');
// Execution order: cube-a, cube-b, cube-c
expect(context.deployCalls.map(c => c.cube)).toEqual(['cube-a', 'cube-b', 'cube-c']);
expect(context.deployCalls.map((c) => c.cube)).toEqual(['cube-a', 'cube-b', 'cube-c']);
});
});