File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 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 :
You can’t perform that action at this time.
0 commit comments