Skip to content

feat: app settings #317

feat: app settings

feat: app settings #317

Workflow file for this run

name: autofix.ci # needed to securely identify the workflow
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
autofix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: npm i -g corepack@latest && corepack enable
- uses: actions/setup-node@v6
with:
node-version: 25
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: install deps
run: pnpm install --frozen-lockfile
- run: pnpm run lint --fix
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8
with: {commit-message: 'chore(lint): apply lint fixes'}