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:
@@ -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);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user