Update react monorepo to v19 (major) #1337
  
    
      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: Lint | |
| on: | |
| pull_request: | |
| jobs: | |
| reviewdog: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22 | |
| - name: Install | |
| run: | | |
| yarn install | |
| - uses: reviewdog/action-setup@v1 | |
| - name: Run eslint | |
| env: | |
| REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }} | |
| run: | | |
| yarn run lint | reviewdog -f=eslint -reporter=github-pr-review -fail-on-error=true |