Skip to content

build(deps): bump minimatch from 3.1.2 to 3.1.5 #140

build(deps): bump minimatch from 3.1.2 to 3.1.5

build(deps): bump minimatch from 3.1.2 to 3.1.5 #140

Workflow file for this run

name: unit-tests
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
cache: pnpm
node-version: lts/*
- name: Install dependencies
run: pnpm install
- name: Run unit tests with coverage
run: pnpm test:coverage
- name: Upload coverage reports
uses: codecov/codecov-action@v5
with:
files: ./coverage/lcov.info
fail_ci_if_error: false
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}