Skip to content

aGallea/tests-coverage-report

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

tests-coverage-report

node-version coverage semrel

About

Github Action for coverage report as a comment

Contributing

  1. Install pre-commit

    pre-commit install --install-hooks -t pre-commit -t commit-msg
  2. @vercel/ncc is in use to compile the code and modules into one file used for distribution. After adding your code, run package script. npm run package

  3. Open a pull-request

Usage

name: Tests With Coverage Report
concurrency:
  group: Tests-Coverage-Report-${{ github.head_ref }}
  cancel-in-progress: true
on:
  workflow_dispatch: null
  pull_request: null
jobs:
  tests-with-coverage:
    timeout-minutes: 5
    runs-on: ubuntu-20.04
    steps:
    - name: checkout
      uses: actions/checkout@v3.3.0
      with:
        fetch-depth: 0

    - name: Use Node.js 18
      uses: actions/setup-node@v3
      with:
        node-version: 18
        cache: npm

    - name: Run Clean Install
      run: npm ci

    - name: Run Build
      run: npm run build

    - name: Run Tests
      run: npm run test

    - name: Coverage Report
      if: always()
      uses: aGallea/tests-coverage-report@v1
      with:
        min-coverage-percentage: '90'
        fail-under-coverage-percentage: 'false'

Customizing

inputs

Following inputs can be used as step.with keys

Name Type Required Default Description
github-token String True GH authentication token
title String False Tests Report Title for the comment
cobertura-path String False ./coverage/cobertura-coverage.xml The location of the cobertura coverage xml file
junit-path String False ./coverage/junit.xml The location of the junit xml file or folder
jacoco-path String False ./target/site/jacoco/jacoco.xml The location of the jacoco xml file
clover-path String False ./coverage/clover.xml The location of the clover coverage xml file
lcov-path String False ./coverage/lcov.info The location of the lcov info file
show-junit Boolean False true Show JUnit details on comment
diffcover-ref String False cobertura Diff coverage report referral
show-diffcover Boolean False true Show coverage report details on comment
min-coverage-percentage Number False 80 Minimum coverage percentage
fail-under-coverage-percentage Boolean False false Fail job when coverage percentage is below the minimum
show-failures-info Boolean False false Show failures info on comment
override-comment Boolean False true Overrides existing coverage comment

Output Examples

alt text alt text