Skip to content

refactor: 🔀 Merge branch 'main' of https://… #456

refactor: 🔀 Merge branch 'main' of https://…

refactor: 🔀 Merge branch 'main' of https://… #456

Workflow file for this run

name: Checker
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Node.js environment
uses: actions/setup-node@v3.0.0
with:
node-version: '19'
- name: Install dependencies
run: npm install --global pnpm && pnpm install --frozen-lockfile
- name: Run the formatter
run: npm run format
- name: Run the linter
run: npm run lint --fix
- name: Create a commit and push the changes
uses: stefanzweifel/git-auto-commit-action@v4
if: always()
with:
commit_message: '🚨 Fixed formatter issues'
commit_user_name: Formatter Bot