Change default shortcut of "Go to File"?
"Go to file" dialog ("t" keyboard shortcut) should NOT hide the files from "build" folder
Add shortcuts to navigate to PR tabs
GitHub Action to visualize test results in GitHub UI
GitHub Actions are great for CI/CD when your project is hosted on GitHub.
However, there's no out-of-the-box support for the visualization of test results. If tests fail, you can check plain text console output. Or download and inspect the results file locally. Both options can be annoying, especially when tests fail only in CI but are passing locally.
I made test-reporter to provide basic test results visualization directly in GitHub UI.
It supports the TRX format, so it should work with xUnit, NUnit or MSTest. You just have to configure the logger:
dotnet test --logger "trx;LogFileName=test-results.trx"
Apart from dotnet, it also supports other languages and testing frameworks. The goal of the project is to have one solution that is easy to extend.
Few projects are already using it. Now I'm posting this to raise some awareness and to get feedback.
More on reddit.com