Skip to content

Commit 22b63ce

Browse files
committed
Update workflows
1 parent 308b9fb commit 22b63ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/end2end.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on: [push, pull_request]
33

44
jobs:
55
run:
6-
name: Lint, Type Check, Security Scan & Build Test
6+
name: End to End Test with Playwright
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
@@ -43,9 +43,9 @@ jobs:
4343

4444
- name: Preview image in summary
4545
run: |
46-
echo "## Screenshot URLs" >> $GITHUB_STEP_SUMMARY
46+
echo "# End to End Test Images" >> $GITHUB_STEP_SUMMARY
4747
for file_url in $(echo "${{ steps.upload.outputs.file_urls }}" | tr ',' '\n'); do
4848
filename=$(basename "$file_url")
49-
echo "## filename\n" >> $GITHUB_STEP_SUMMARY
50-
echo "![${filename}](${file_url})\n" >> $GITHUB_STEP_SUMMARY
49+
echo "## ${filename}" >> $GITHUB_STEP_SUMMARY
50+
echo "![${filename}](${file_url})" >> $GITHUB_STEP_SUMMARY
5151
done

0 commit comments

Comments
 (0)