add quick level filter, which allows filtering logs by level according to Log Level Rules and the base level field
#401
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |