Skip to content

Release creation 1.2 #73

Release creation 1.2

Release creation 1.2 #73

Workflow file for this run

name: Code Coverage
on:
push:
branches: [ main, dev ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
node-version: [ 20.x ]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set Up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Run Coverage Tests
run: |
npm ci
npm run build --if-present
npm run coverage
- name: Upload Coverage Reports To Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}