Skip to content

[ENG-353] Add mempool unit and e2e tests #600

[ENG-353] Add mempool unit and e2e tests

[ENG-353] Add mempool unit and e2e tests #600

Workflow file for this run

name: Test Coverage
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Test Coverage & Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run ci:lint
- name: Run tests with coverage
run: npm run ci:test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: true