Skip to content

Commit 133301e

Browse files
committed
Added dependabot and summary for github reports
1 parent 450c3b2 commit 133301e

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "nuget"
4+
directory: "/"
5+
schedule: { interval: "weekly" }
6+
- package-ecosystem: "npm"
7+
directory: "/ui"
8+
schedule: { interval: "weekly" }

.github/workflows/api-ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
/p:Threshold=0 \
5757
/p:ThresholdType=line \
5858
/p:ThresholdStat=total
59-
59+
6060
- name: Install ReportGenerator
6161
run: dotnet tool install --global dotnet-reportgenerator-globaltool
6262

@@ -83,3 +83,11 @@ jobs:
8383
name: coverage-report
8484
path: CoverageReport/**
8585
if-no-files-found: warn
86+
87+
- name: Summarize test results
88+
if: always()
89+
run: |
90+
echo "## Test Summary" >> $GITHUB_STEP_SUMMARY
91+
echo "- API: \`dotnet test\` with coverage" >> $GITHUB_STEP_SUMMARY
92+
echo "- Coverage report: see artifacts → coverage-report/index.html" >> $GITHUB_STEP_SUMMARY
93+

.github/workflows/ui-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ jobs:
5858
name: playwright-report
5959
path: ui/playwright-report
6060
if-no-files-found: warn
61+
62+
- name: Summarize UI run
63+
if: always()
64+
run: |
65+
echo "## UI Summary" >> $GITHUB_STEP_SUMMARY
66+
echo "- HTML report in artifacts: **playwright-report**" >> $GITHUB_STEP_SUMMARY
6167
6268
- name: Upload Traces (on failure)
6369
if: failure()

0 commit comments

Comments
 (0)