Skip to content

Commit

Permalink
Fix quotes in integration_tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgibson committed Jul 3, 2024
1 parent 755266a commit 1c95a47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Notify via Slack of test-run success
if: ${{ needs.integration-tests.result == "success" && needs.playwright-tests.result == "success" }}
if: ${{ needs.integration-tests.result == 'success' && needs.playwright-tests.result == 'success' }}
uses: ./.github/actions/slack
with:
env_name: test
Expand All @@ -142,7 +142,7 @@ jobs:
ref: ${{ inputs.branch }}
message: "Integration tests completed. Status: success"
- name: Notify via Slack of test-run failure
if: ${{ needs.integration-tests.result == "failure" || needs.playwright-tests.result == "failure" }}
if: ${{ needs.integration-tests.result == 'failure' || needs.playwright-tests.result == 'failure' }}
uses: ./.github/actions/slack
with:
env_name: test
Expand All @@ -153,7 +153,7 @@ jobs:
ref: ${{ inputs.branch }}
message: "Integration tests completed. Status: failure"
- name: Notify via Slack of test-run cancelled
if: ${{ needs.integration-tests.result == "cancelled" || needs.playwright-tests.result == "cancelled" }}
if: ${{ needs.integration-tests.result == 'cancelled' || needs.playwright-tests.result == 'cancelled' }}
uses: ./.github/actions/slack
with:
env_name: test
Expand Down

0 comments on commit 1c95a47

Please sign in to comment.