Skip to content

fix(table): cover and clean #457

fix(table): cover and clean

fix(table): cover and clean #457

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm i --legacy-peer-deps
- name: Run Jest coverage
run: |
export NODE_OPTIONS="--max_old_space_size=4096"
npm run cover
- name: Run Lint
run: npm run lint
- name: Run build
run: npm run build
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}