Bug/60449 reminders generate two or more lines for a work package in notification center clicking one selects all #8160
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: '18.13' | |
cache: npm | |
cache-dependency-path: frontend/package-lock.json | |
- uses: reviewdog/action-eslint@v1 | |
with: | |
reporter: github-pr-check | |
workdir: 'frontend/' | |
eslint_flags: 'src/' |