Update dependency node to v24 #3486
  
    
      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@v4 | |
| with: | |
| node-version: 24.11.0 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Install | |
| run: | | |
| pnpm install --frozen-lockfile | |
| - uses: reviewdog/action-setup@v1 | |
| - name: Run eslint | |
| env: | |
| REVIEWDOG_GITHUB_API_TOKEN: ${{ github.token }} | |
| run: | | |
| pnpm run lint | reviewdog -f=eslint -reporter=github-pr-review -fail-on-error=true | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@master | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.11.0 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Install | |
| run: | | |
| pnpm install --frozen-lockfile | |
| - name: Typecheck | |
| run: | | |
| pnpm run typecheck |