Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ jobs:

- name: Fail if tests failed
if: steps.e2e-tests.outcome != 'success'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
core.setFailed('E2E tests failed')

- name: Pass if tests pass
if: steps.e2e-tests.outcome == 'success'
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
core.setCommandEcho('E2E tests passed')
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
- name: Generate Report URL
if: ${{ !cancelled() }}
id: report-url
uses: actions/github-script@v7
uses: actions/github-script@v9
with:
script: |
core.setOutput('report-url', 'https://childmindinstitute.github.io/mindlogger-backend-refactor/e2e/${{ github.run_number }}')
Expand Down
Loading