Skip to content

Discontinue the chain after the snapshot height finalizes (#926) #124

Discontinue the chain after the snapshot height finalizes (#926)

Discontinue the chain after the snapshot height finalizes (#926) #124

name: 'Branch Code Coverage'
on:
push:
branches: ['development', feature/*, hotfix/*, main, release/*]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check test coverage
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
files: coverage-final.json
name: codecov-umbrella
verbose: true