From 47bc3efc5249b1c0c1ef345d8b17f11cd434a51f Mon Sep 17 00:00:00 2001 From: David Finol Date: Fri, 26 Feb 2021 00:36:58 -0600 Subject: [PATCH] Cleanup --- src/model/input.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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}`); }