Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: commitizen/cz-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.1
Choose a base ref
...
head repository: commitizen/cz-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.2
Choose a head ref
  • 3 commits
  • 4 files changed
  • 3 contributors

Commits on Jul 19, 2019

  1. Copy the full SHA
    f5751b2 View commit details
  2. Adding tasks to publish test results to AzurePipelines (#590)

    * Add tasks to publish results to AzurePipelines
    
    * package.lock Updated
    
    * fix: update test reporter for mocha 6
    vagisha-nidhi authored and jimthedev committed Jul 19, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5f71dfe View commit details
  3. Copy the full SHA
    129a779 View commit details
Showing with 1,561 additions and 626 deletions.
  1. +11 −1 jobs/build.yml
  2. +1,526 −618 package-lock.json
  3. +16 −7 package.json
  4. +8 −0 test/mochareporters.json
12 changes: 11 additions & 1 deletion jobs/build.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,17 @@ jobs:
- script: git config --global user.name "Example Git User"
- script: npm install
- script: npm run build
- script: npm test
- script: npm test && npm run write-coverage
- task: PublishTestResults@2
displayName: 'Publish Test Results'
inputs:
testResultsFiles: '**/junit-*.xml'
testRunTitle: TestRun ${{ parameters.name }} $(node_version)
- task: PublishCodeCoverageResults@1
displayName: 'Publish code coverage results'
inputs:
codeCoverageTool: 'cobertura'
summaryFileLocation: '**/coverage/cobertura-coverage.xml'
- task: PublishBuildArtifacts@1
displayName: Publish packages
condition: and(succeeded(), eq(variables['system.pullrequest.isfork'], false))
Loading