Replace every remaining reference to the old Gitea infrastructure with the new GitHub-hosted equivalents across all documentation, wiki pages, test files, and historical ticket summaries. - README.md: CI badge, clone URL, releases link, CI/CD section, project structure - docs/wiki/CICD-Pipeline.md: full rewrite for GitHub Actions + ghcr.io - docs/wiki/Home.md: CI badge, releases link, phase status, tech stack - docs/wiki/Troubleshooting.md: rewrite CI troubleshooting for GitHub Actions - docs/architecture/README.md: update CI/CD pipeline diagram - AGENTS.md: CI/CD section, environment references - PLAN.md: directory structure, pipeline table - SECURITY_AUDIT.md: mark C3 and L4 findings as resolved - ticket-git-cliff-changelog.md: workflow path updated - tickets/ci-runner-speed-optimization.md: image registry updated - 2026-hackathon_AgenticFeature.md: workflow path updated - tests: workflow path assertions updated in all three test files
24 lines
707 B
TypeScript
24 lines
707 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { readFileSync } from "node:fs";
|
|
import path from "node:path";
|
|
|
|
const autoTagWorkflowPath = path.resolve(
|
|
process.cwd(),
|
|
".github/workflows/release.yml",
|
|
);
|
|
|
|
describe("auto-tag release macOS bundle path", () => {
|
|
it("does not reference the legacy TFTSR.app bundle name", () => {
|
|
const workflow = readFileSync(autoTagWorkflowPath, "utf-8");
|
|
|
|
expect(workflow).not.toContain("/bundle/macos/TFTSR.app");
|
|
});
|
|
|
|
it("resolves the macOS .app bundle dynamically", () => {
|
|
const workflow = readFileSync(autoTagWorkflowPath, "utf-8");
|
|
|
|
expect(workflow).toContain("APP=$(find");
|
|
expect(workflow).toContain("-name \"*.app\"");
|
|
});
|
|
});
|