Skip to content

Added analytics handler #126

Added analytics handler

Added analytics handler #126

Workflow file for this run

name: Codecov
on:
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v2
with:
node-version: 18
- uses: pnpm/action-setup@v2.0.1
with:
version: 8.5.1
- name: Install dependencies
run: pnpm install
- name: Generate coverage report
run: pnpm coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: false
verbose: true