Skip to content

Improved handling of multiline commits. #19

Improved handling of multiline commits.

Improved handling of multiline commits. #19

Workflow file for this run

name: Test Suite
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint with ESLint
run: npm run lint
- name: Run tests
run: npm test # Only runs the passing tests
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
directory: ./coverage/
flags: unittests
fail_ci_if_error: true
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}