mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-02-05 12:15:28 +08:00
Feature/create check (#97)
This commit is contained in:
@@ -21,6 +21,9 @@ class Input {
|
||||
const rawProjectPath = getInput('projectPath') || '.';
|
||||
const rawArtifactsPath = getInput('artifactsPath') || 'artifacts';
|
||||
const rawUseHostNetwork = getInput('useHostNetwork') || 'false';
|
||||
const rawCreateCheck = getInput('createCheck') || 'false';
|
||||
const checkName = getInput('checkName') || 'Test Results';
|
||||
const githubToken = getInput('githubToken') || '';
|
||||
const customParameters = getInput('customParameters') || '';
|
||||
|
||||
// Validate input
|
||||
@@ -44,6 +47,7 @@ class Input {
|
||||
const projectPath = rawProjectPath.replace(/\/$/, '');
|
||||
const artifactsPath = rawArtifactsPath.replace(/\/$/, '');
|
||||
const useHostNetwork = rawUseHostNetwork === 'true';
|
||||
const createCheck = rawCreateCheck === 'true';
|
||||
const unityVersion =
|
||||
rawUnityVersion === 'auto' ? UnityVersionParser.read(projectPath) : rawUnityVersion;
|
||||
|
||||
@@ -55,6 +59,9 @@ class Input {
|
||||
testMode,
|
||||
artifactsPath,
|
||||
useHostNetwork,
|
||||
createCheck,
|
||||
checkName,
|
||||
githubToken,
|
||||
customParameters,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user