Skip to content

fix : update appkit config #2887

fix : update appkit config

fix : update appkit config #2887

Workflow file for this run

name: Code Formatting
on:
pull_request:
branches: ['**']
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '21.1.0'
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- run: pnpm format
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: 'style: Apply prettier formatting'
branch: ${{ github.head_ref }}