Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Merge pull request #186 from LiskHQ/dependabot/npm_and_yarn/debug-4.3.1 #55

Merge pull request #186 from LiskHQ/dependabot/npm_and_yarn/debug-4.3.1

Merge pull request #186 from LiskHQ/dependabot/npm_and_yarn/debug-4.3.1 #55

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: npm install --global yarn && yarn --frozen-lockfile --ignore-engines && yarn build
- 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