Skip to content

Polish 🧼 (#84) #32

Polish 🧼 (#84)

Polish 🧼 (#84) #32

Workflow file for this run

name: Format
on:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
actions: write
env:
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Update IDX template
run: pnpm generate:idx
- name: Format
run: pnpm run format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5