Skip to content

Fix missing JSDoc for getFilamentConfig #54

Fix missing JSDoc for getFilamentConfig

Fix missing JSDoc for getFilamentConfig #54

Workflow file for this run

name: Format
on: push
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
with:
node-version: "20.x"
cache: "pnpm"
- name: Set up pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Format code
run: pnpm run format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply formatting changes
branch: ${{ github.head_ref }}