We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in action.ps1 the test_results_path is available as an input option. If it is provided, then it looks for result_clixml_path :
action.ps1
test_results_path
$test_results_path = $inputs.test_results_path if ($test_results_path) { Write-ActionInfo "Test Results Path provided as input; skipping Pester tests" $result_clixml_path = Get-ActionInput result_clixml_path if ($result_clixml_path) { $script:pesterResult = Import-Clixml $result_clixml_path Write-ActionInfo "Pester Result CLIXML provided as input; loaded" } }
However, in action.yml, result_clixml_path is not listed in inputs:
result_clixml_path
inputs:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in
action.ps1
thetest_results_path
is available as an input option. If it is provided, then it looks for result_clixml_path :However, in action.yml,
result_clixml_path
is not listed ininputs:
The text was updated successfully, but these errors were encountered: