ci: add cobertura coverage report

This commit is contained in:
Rainer Killinger
2022-08-17 16:35:14 +02:00
parent c4016fd29a
commit f2cb318a09
2 changed files with 8 additions and 1 deletions

View File

@@ -52,6 +52,12 @@ unit:
stage: test
script:
- npm test
coverage: '/Statements[^:]*\:[^:]*\s+([\d\.]+)%/'
artifacts:
reports:
coverage_report:
coverage_format: cobertura
path: coverage/cobertura-coverage.xml
pages:
stage: deploy

View File

@@ -11,7 +11,7 @@
"prepublishOnly": "npm ci && npm run build",
"preversion": "npm run prepublishOnly",
"push": "git push && git push origin \"v$npm_package_version\"",
"test": "nyc mocha --require ts-node/register --recursive 'test/*.spec.ts'",
"test": "nyc mocha --recursive 'test/*.spec.ts'",
"lint": "eslint --ext .ts src/"
},
"description": "Node.js library to interact with the StApps backend service",
@@ -113,6 +113,7 @@
"lines": 95,
"per-file": true,
"reporter": [
"cobertura",
"html",
"text-summary"
],