Skip to content

create mint and sell bill pages (#52) #50

create mint and sell bill pages (#52)

create mint and sell bill pages (#52) #50

Workflow file for this run

name: Codecov
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Run tests and generate coverage
run: npm run test -- --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # Required if the repo is private
files: ./coverage/lcov.info # Path to the lcov report
flags: unittests # Optional: Flag for specific test type
name: codecov-umbrella # Optional: Custom name for coverage report
fail_ci_if_error: true # Optional: Fail CI if upload fails