Skip to content

Commit 2cc5771

Browse files
authored
Update main.yml
1 parent 2972f3d commit 2cc5771

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
echo "### 📝 Test Execution Summary" >> $GITHUB_STEP_SUMMARY
4040
echo "| Status | Test Case | Feature |" >> $GITHUB_STEP_SUMMARY
4141
echo "|---------|-----------|---------|" >> $GITHUB_STEP_SUMMARY
42-
cat reports/cucumber-report.json | jq -r '.[] | .elements[] | "| ✅ Pass | \(.name) | \(.keyword) |"' >> $GITHUB_STEP_SUMMARY
43-
cat reports/cucumber-report.json | jq -r '.[] | .elements[] | select(.steps[].result.status=="failed") | "| ❌ Fail | \(.name) | \(.keyword) |"' >> $GITHUB_STEP_SUMMARY
42+
cat test-results/cucumber-report.json | jq -r '.[] | .elements[] | "| ✅ Pass | \(.name) | \(.keyword) |"' >> $GITHUB_STEP_SUMMARY
43+
cat test-results/cucumber-report.json | jq -r '.[] | .elements[] | select(.steps[].result.status=="failed") | "| ❌ Fail | \(.name) | \(.keyword) |"' >> $GITHUB_STEP_SUMMARY
4444
- uses: actions/upload-artifact@v4
4545
if: ${{ !cancelled() }}
4646
with:

0 commit comments

Comments
 (0)