One proof signal
A test suite is stronger when it runs without you clicking anything. Put it in CI so every push to GitHub runs the same test command.
Recruiters and mentors can then see a public commit, a workflow run, and a green check. That is better proof than saying “tests pass on my laptop.”
What CI does
CI means continuous integration. For this track, it only needs to do one job: install your project and run tests whenever code is pushed.
GitHub Actions is free enough for most student public repos. It reads a workflow file from your repo and runs the commands on a clean machine.