azure-pipelines-build-task
How to publish Jest Unit Test Results in VSTS tests?
I’ve used a different approach, b/c after some research I found that the Jest testResultsProcessor property is deprecated. I’m using the jest-junit package for test reports (which has been worked on more recently than the jest-trx-results-processor, fwiw): Add jest-junit to package.json Eg yarn add -D jest-junit or npm add –save-dev jest-junit Add a VSTS task … Read more
Azure pipeline does’t allow to git push throwing ‘GenericContribute’ permission is needed
If you get the following error in your build… TF401027: You need the Git ‘GenericContribute’ permission to perform this action. Details: identity …then, to fix it: Copy the guid part of the identity name from the error message Go to the repository settings Paste the guid into the permissions search box for user or group. … Read more