Skip to content

Merge pull request #2472 from EpicenterHQ/claude/retire-layout-benchmark #3037

Merge pull request #2472 from EpicenterHQ/claude/retire-layout-benchmark

Merge pull request #2472 from EpicenterHQ/claude/retire-layout-benchmark #3037

Workflow file for this run

name: autofix.ci
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
autofix:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version-file: 'package.json'
# Frozen so a formatting pass can never resolve new dependency versions
# and push a mutated bun.lock back to the PR branch.
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Format
run: bun run format
- name: Apply fixes
uses: autofix-ci/action@v1
with:
commit-message: 'chore: apply formatting'