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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: dotnet build ${{ env.SOLUTION_PATH }} --configuration Release --no-restore

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-artifacts
path: |
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
--filter "Category!=Integration"

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: unit-test-results
Expand All @@ -103,7 +103,7 @@ jobs:
-reporttypes:"Html;Cobertura" || true

- name: Upload coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: success()
with:
name: coverage-report
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
DOTNET_SYSTEM_NET_HTTP_USESOCKETSHTTPHANDLER: 0

- name: Upload integration test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: integration-test-results
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
run: npm run build

- name: Upload UI build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ui-dist
path: ui/dist/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: npm run build

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ui-dist
path: ui/dist
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
BASE_URL: http://localhost:5173

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: playwright-report-standalone
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
BASE_URL: http://localhost:5173

- name: Upload test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: playwright-report-integration
Expand All @@ -188,7 +188,7 @@ jobs:
retention-days: 7

- name: Upload screenshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: always()
with:
name: e2e-screenshots
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
BASE_URL: http://localhost:5173

- name: Upload visual snapshots
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: visual-snapshots
path: ui/e2e/screenshots/
Expand Down
Loading