Skip to content

IndexedMerkleTree

IndexedMerkleTree #484

Workflow file for this run

name: "coverage"
on:
push:
branches:
- master
pull_request:
branches:
- master
- dev
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, 'chore(release):') }}
steps:
- name: Checkout the repository
uses: actions/checkout@v5
- name: Setup
uses: ./.github/actions/setup
- name: Run coverage
env:
NODE_OPTIONS: "--max_old_space_size=16384"
run: npm run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}