build(deps-dev): bump @types/node from 24.10.10 to 25.2.3 #531
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: [push] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: lts/* | |
| - name: Installing dependencies | |
| run: yarn | |
| - name: Running linter | |
| run: npx eslint --fix --max-warnings 0 | |
| - name: Committing fix | |
| id: commit | |
| run: | | |
| git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git commit -am "style: fix linter issues" | |
| continue-on-error: true | |
| - name: push | |
| if: steps.commit.outcome != 'failure' | |
| run: git push |