Skip to content

add quick level filter, which allows filtering logs by level according to Log Level Rules and the base level field #397

add quick level filter, which allows filtering logs by level according to Log Level Rules and the base level field

add quick level filter, which allows filtering logs by level according to Log Level Rules and the base level field #397

name: check / frontend
on:
push:
branches: [main]
paths:
- '.github/workflow/pr-checks-frontend.yml'
- '**/*.ts'
- '**/*.tsx'
- '**/yarn.lock'
- '**/package.json'
- '**/Makefile'
- '**/Dockerfile'
pull_request:
branches: [main]
paths:
- '.github/workflow/pr-checks-frontend.yml'
- '**/*.ts'
- '**/*.tsx'
- '**/yarn.lock'
- '**/package.json'
- '**/Makefile'
- '**/Dockerfile'
jobs:
run-check:
name: check
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v4
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: 24.11.1
- name: Install all dependencies
run: yarn install
- name: Run tests
run: yarn test