Skip to content

chore(deps-dev): bump typescript-eslint from 8.14.0 to 8.15.0 #31

chore(deps-dev): bump typescript-eslint from 8.14.0 to 8.15.0

chore(deps-dev): bump typescript-eslint from 8.14.0 to 8.15.0 #31

Workflow file for this run

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