diff --git a/src/model/input.js b/src/model/input.js index 683b9d2..a8cecf9 100644 --- a/src/model/input.js +++ b/src/model/input.js @@ -17,7 +17,7 @@ class Input { // Input variables specified in workflow using "with" prop. const rawUnityVersion = getInput('unityVersion') || 'auto'; const customImage = getInput('customImage') || ''; - const testMode = getInput('testMode') || 'all'; + const testMode = (getInput('testMode') || 'all').toLowerCase(); const rawProjectPath = getInput('projectPath') || '.'; const rawArtifactsPath = getInput('artifactsPath') || 'artifacts'; const rawUseHostNetwork = getInput('useHostNetwork') || 'false';