Skip to content
Closed
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
7 changes: 7 additions & 0 deletions .github/workflows/evaluation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,13 @@ jobs:

node .skill-validator/dist/index.js $ARGS --tests-dir ./src/dotnet/tests ./src/dotnet/skills

- name: Debug results dir
if: always()
run: |
echo "cwd: $(pwd)"
find . -path './.git' -prune -o -name 'results.json' -print
ls -la .skill-validator-results/ 2>&1 || echo "dir not found"

Comment on lines +90 to +96

Copilot AI Feb 20, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This debug step appears to be temporary troubleshooting code based on the PR title "Testing". Debug steps added for troubleshooting should be removed before merging to production. If this debugging information is valuable for future troubleshooting, consider making it conditional with a workflow input parameter or moving it to a separate debugging workflow.

Suggested change
- name: Debug results dir
if: always()
run: |
echo "cwd: $(pwd)"
find . -path './.git' -prune -o -name 'results.json' -print
ls -la .skill-validator-results/ 2>&1 || echo "dir not found"

Copilot uses AI. Check for mistakes.
- name: Upload results
if: always()
uses: actions/upload-artifact@v4
Expand Down
Loading