Skip to content

Commit

Permalink
Changing the echo into write-ouput
Browse files Browse the repository at this point in the history
  • Loading branch information
amankumarrr committed Mar 27, 2024
1 parent 11a2e22 commit 8c4e2af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/template-ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ jobs:
run: |
$testOutput = npx playwright test ${{ inputs.tests_to_run }} # On Success - 'Running x tests using 1 worker ···· x passed'
$testPassed = ($testOutput -match "failed") -eq $false # On Failure - 'Running x tests using 1 worker ···· x passed, x failed'
echo "Test ouput: $testOutput"
echo "Test passed: $testPassed"
Write-Host "Test ouput: $testOutput"
Write-Host "Test passed: $testPassed"
echo "testPassed=$testPassed" >> $env:GITHUB_OUTPUT
env:
HOST_URL: ${{ inputs.deploy_url }}
Expand Down

0 comments on commit 8c4e2af

Please sign in to comment.