Open pmaytak opened 2 weeks ago
We have a GitHub Action that runs unit tests: https://github.com/AzureAD/microsoft-identity-web/actions/workflows/dotnetcore.yml
Currently the runner doesn't have the latest VS and MSBuild versions needed (17.12) to build .NET 9.
As a workaround we removed --no-restore --no-build when running .NET 9 tests only, meaning we perform a build. https://github.com/AzureAD/microsoft-identity-web/actions/runs/11846915780/workflow#L52
--no-restore --no-build
Once the runner is updated, we need to add those flags back in to speed up the tests.
We have a GitHub Action that runs unit tests: https://github.com/AzureAD/microsoft-identity-web/actions/workflows/dotnetcore.yml
Currently the runner doesn't have the latest VS and MSBuild versions needed (17.12) to build .NET 9.
As a workaround we removed
--no-restore --no-build
when running .NET 9 tests only, meaning we perform a build. https://github.com/AzureAD/microsoft-identity-web/actions/runs/11846915780/workflow#L52Once the runner is updated, we need to add those flags back in to speed up the tests.