File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
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" }
Original file line number Diff line number Diff line change 56
56
/p:Threshold=0 \
57
57
/p:ThresholdType=line \
58
58
/p:ThresholdStat=total
59
-
59
+
60
60
- name : Install ReportGenerator
61
61
run : dotnet tool install --global dotnet-reportgenerator-globaltool
62
62
83
83
name : coverage-report
84
84
path : CoverageReport/**
85
85
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
+
Original file line number Diff line number Diff line change 58
58
name : playwright-report
59
59
path : ui/playwright-report
60
60
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
61
67
62
68
- name : Upload Traces (on failure)
63
69
if : failure()
You can’t perform that action at this time.
0 commit comments