Skip to content

chore(deps-dev): bump @changesets/cli from 2.27.10 to 2.27.11 #39

chore(deps-dev): bump @changesets/cli from 2.27.10 to 2.27.11

chore(deps-dev): bump @changesets/cli from 2.27.10 to 2.27.11 #39

Workflow file for this run

name: 🧪 Generate Coverage Report to Codecov
on:
push:
branches:
- main
- 'feature/**'
- 'bugfix/**'
- 'feat/**'
pull_request:
branches:
- main
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
# Step 1: Checkout code
- name: 📂 Checkout code
uses: actions/checkout@v4
# Step 2: Set up Node.js and pnpm
- name: 📦 Set up Node.js and pnpm
uses: pnpm/action-setup@v4
with:
run_install: |
- recursive: true
args: [--frozen-lockfile]
- name: ✅ Run tests
run: pnpm run test:ci
- name: 📤 Upload results to Codecov
uses: codecov/codecov-action@v4
with:
files: ./coverage/lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true