diff --git a/src/model/input.js b/src/model/input.js index d67b8b0..505cc92 100644 --- a/src/model/input.js +++ b/src/model/input.js @@ -24,7 +24,9 @@ class Input { const rawCreateCheck = getInput('createCheck') || 'false'; const checkName = getInput('checkName') || 'Test Results'; const githubToken = getInput('githubToken') || ''; - const customParameters = getInput('customParameters') || ''; // Validate input + const customParameters = getInput('customParameters') || ''; + + // Validate input if (!includes(this.testModes, testMode)) { throw new Error(`Invalid testMode ${testMode}`); }