Skip to content

fix(client): tracker filter size conditional render logic and react k… #1549

fix(client): tracker filter size conditional render logic and react k…

fix(client): tracker filter size conditional render logic and react k… #1549

Workflow file for this run

name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
node: [20]
check: [check-source-formatting, check-types, lint]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run ${{ matrix.check }}