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

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.

find . will traverse nested .git dirs (e.g., .skill-validator/.git) and potentially large trees like .skill-validator/node_modules, which can add avoidable overhead/noisy logs on every run. Consider pruning all .git dirs (-name .git -prune) and/or limiting the search scope (e.g., search under .skill-validator-results or add -maxdepth / prune */node_modules).

Suggested change
find . -path './.git' -prune -o -name 'results.json' -print
find .skill-validator-results -name 'results.json' -print

Copilot uses AI. Check for mistakes.
ls -la .skill-validator-results/ 2>&1 || echo "dir not found"

- name: Upload results
if: always()
uses: actions/upload-artifact@v4
Expand Down
Loading