diff --git a/src/inputs.test.ts b/src/inputs.test.ts index 39a3e17..773e350 100644 --- a/src/inputs.test.ts +++ b/src/inputs.test.ts @@ -134,7 +134,10 @@ describe("get action inputs", () => { const { getInputs } = await import("./inputs.js"); const core = await import("@actions/core"); - const booleanInputs = { "run-build": true, ...testCase.booleanInputs }; + const booleanInputs: Record = { + "run-build": true, + ...testCase.booleanInputs, + }; jest.mocked(core.getBooleanInput).mockImplementation((name) => { return booleanInputs[name] ?? false; });