Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
chore: Updates badges to point to master
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksenger committed Mar 22, 2018
1 parent 098cac5 commit 1b1b85b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Jenkinsfile
Expand Up @@ -31,7 +31,8 @@ pipeline {
steps {
setBuildStatus("Running the tests..", "PENDING");
echo 'Testing...'
sh 'npm run test:report'
sh 'npm run test:junit'
sh 'npm run report:cobertura'
}
}
stage('Build') {
Expand All @@ -45,7 +46,9 @@ pipeline {

post {
always {
archiveArtifacts artifacts: 'package.json', fingerprint: true
junit("*.xml");
step([$class: 'CoberturaPublisher', coberturaReportFile: 'coverage/cobertura-coverage.xml'])
}
failure {
setBuildStatus("¯\\_(ツ)_/¯", "FAILURE");
Expand Down
3 changes: 2 additions & 1 deletion package.json
Expand Up @@ -66,7 +66,8 @@
"build:types": "tsc",
"build:scripts": "webpack -p",
"test": "nyc mocha",
"test:report": "nyc mocha --reporter mocha-junit-reporter"
"test:junit": "nyc mocha --reporter mocha-junit-reporter",
"report:cobertura": "nyc report --reporter cobertura"
},
"types": "dist/esm/index.d.ts",
"version": "3.1.3"
Expand Down
4 changes: 3 additions & 1 deletion readme.md
@@ -1,4 +1,6 @@
![Version 3.2.0](https://img.shields.io/badge/npm-v3.2.0-blue.svg) ![100% Code Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen.svg)
[![Version](https://shields.nsenger.com/react-arcgis-master/version)](https://www.npmjs.com/package/react-arcgis)
[![Build Status](https://shields.nsenger.com/react-arcgis-master/status)](https://jenkins.nsenger.com/job/react-arcgis-master/)
[![Coverage](https://shields.nsenger.com/react-arcgis-master/coverage)](https://jenkins.nsenger.com/job/react-arcgis-master/)

# React-ArcGIS

Expand Down

0 comments on commit 1b1b85b

Please sign in to comment.