Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
midleman committed Dec 9, 2024
1 parent 21b0864 commit 8e27f03
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/gen-report-dir/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Generate Report Directory"
name: "Generate Report Directory & Send to GH Summary"
description: "Generates a unique REPORT_DIR and appends the report URL to the GitHub Actions summary"
inputs:
bucket-url:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ jobs:
run: bash scripts/playwright-tags.sh "e2e-windows" "${{ inputs.grep }}"
shell: bash

- name: Send HTML Summary to GH Action Summary
- name: Send Results to GH Summary
uses: ./.github/actions/gen-report-dir
if: ${{ !cancelled() }}
uses: ./.github/actions/generate-report-dir

- name: Run Playwright Tests (Electron)
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
sudo update-rc.d xvfb defaults
sudo service xvfb start
- name: Send HTML Summary to GH Action Summary
- name: Send Results to GH Summary
uses: ./.github/actions/gen-report-dir
if: ${{ !cancelled() }}
uses: ./.github/actions/generate-report-dir

- name: Run Tests (Electron)
if: ${{ !cancelled() }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/test-e2e-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,9 @@ jobs:
run: bash scripts/playwright-tags.sh "e2e-windows" "${{ inputs.grep }}"
shell: bash

- name: Send HTML Summary to GH Action Summary
uses: ./.github/actions/generate-report-dir
- name: Send Results to GH Summary
uses: ./.github/actions/gen-report-dir
if: ${{ !cancelled() }}

- name: Run Tests on Windows (Electron)
env:
Expand Down

0 comments on commit 8e27f03

Please sign in to comment.