[60629] Display messed up after creating child from relations tab in split view #8475
Workflow file for this run
This file contains 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: eslint | |
on: | |
pull_request: | |
branches: | |
- dev | |
- release/* | |
paths: | |
- '**.html' | |
- '**.js' | |
- '**.ts' | |
jobs: | |
eslint: | |
name: eslint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.9' | |
cache: npm | |
cache-dependency-path: frontend/package-lock.json | |
- uses: reviewdog/action-eslint@v1 | |
with: | |
reporter: github-pr-check | |
workdir: 'frontend/' | |
eslint_flags: 'src/' |