Skip to content

Commit

Permalink
Merge pull request #62 Improve GitGitGadget's own CI by publishing th…
Browse files Browse the repository at this point in the history
…e test results

Might just as well use Azure Pipelines' most convenient features... This will populate the "Tests" tab of the Azure Pipeline runs.
  • Loading branch information
derrickstolee committed Dec 26, 2018
2 parents c37d58c + 1c79f02 commit 319cc63
Show file tree
Hide file tree
Showing 4 changed files with 407 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -4,4 +4,4 @@
/build/
/node_modules/
/npm-debug.log

/junit.xml
8 changes: 7 additions & 1 deletion azure-pipelines.yml
Expand Up @@ -18,5 +18,11 @@ steps:
- script: |
npm install
npm run build
npm run test
npm run ci
displayName: 'npm install, build and test'

- task: PublishTestResults@2
displayName: 'Publish Test Results'
inputs:
testResultsFiles: 'junit.xml'
condition: succeededOrFailed()

0 comments on commit 319cc63

Please sign in to comment.