Skip to content
Open
Show file tree
Hide file tree
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/cd.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CD - Continuous Deployment
name: CD - Continuous Deployment

on:
workflow_run:
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
API_BASE_URL: ${{ env.RAILWAY_URL }}

- name: Publish E2E test results
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v2
if: success() || failure()
with:
name: E2E Test Results
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
continue-on-error: true

- name: Publish live integration test results
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v2
if: success() || failure()
with:
name: Live Integration Test Results
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI - Continuous Integration
name: CI - Continuous Integration

on:
push:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
retention-days: 30

- name: Publish unit test results
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v2
if: success() || failure()
with:
name: Unit Test Results
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
retention-days: 30

- name: Publish mocked integration test results
uses: dorny/test-reporter@v1
uses: dorny/test-reporter@v2
if: success() || failure()
with:
name: Mocked Integration Test Results
Expand Down
Loading