Skip to content

chore(deps): bump json-schema-library from 10.0.0-rc6 to 10.0.0-rc7 #77

chore(deps): bump json-schema-library from 10.0.0-rc6 to 10.0.0-rc7

chore(deps): bump json-schema-library from 10.0.0-rc6 to 10.0.0-rc7 #77

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