chore(deps-dev): bump typescript-eslint from 8.14.0 to 8.15.0 #31
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: Lint | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
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 |