Skip to content

Closes #34: exclude svg use from lrc #65

Closes #34: exclude svg use from lrc

Closes #34: exclude svg use from lrc #65

Workflow file for this run

name: Test Coverage to Codacy
on:
push:
branches:
- develop
- trunk
pull_request:
branches:
- trunk
- develop
- branch-*
- feature/*
- enhancement/*
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests and coverage
run: npm run coverage
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage/lcov.info