fix(HAI-107): fix CI failures by adding root test script and fixing checksum test

- Add missing root-level 'test' script to package.json (pnpm -r test)
- Fix checksum test assertion to match actual workflow step name ('Generate checksum')
This commit is contained in:
Dustin Byrne
2026-03-26 21:16:10 -04:00
parent a1e824015b
commit d616273a73
2 changed files with 2 additions and 1 deletions

View File

@@ -249,7 +249,7 @@ describe("Code signing — Release workflow", () => {
it("checksums step comes after signing steps", () => {
const signMacosIndex = content.indexOf("sign-macos.sh");
const signWindowsIndex = content.indexOf("sign-windows.ps1");
const checksumIndex = content.indexOf("Generate checksums");
const checksumIndex = content.indexOf("Generate checksum");
expect(signMacosIndex).toBeLessThan(checksumIndex);
expect(signWindowsIndex).toBeLessThan(checksumIndex);
});