Skip to content

fix sorting in the Logs panel, where incorrect logs were shown while the oldest first sort was active #402

fix sorting in the Logs panel, where incorrect logs were shown while the oldest first sort was active

fix sorting in the Logs panel, where incorrect logs were shown while the oldest first sort was active #402

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