From ee3807ecbe524d4fd9eff03fb161a55262baf883 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Thu, 12 Mar 2026 20:01:38 -0400 Subject: [PATCH] fix autofix (#17923) we need to build the compiler before Prettier will work --- .github/workflows/autofix.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index fba68fdb99..706a62e3d6 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -56,10 +56,10 @@ jobs: node-version: 24 cache: pnpm - run: pnpm install --frozen-lockfile + - name: Build + run: pnpm -F svelte build - name: Run prettier run: pnpm format - - name: Generate types - run: pnpm -F svelte generate - name: Commit changes run: | git config user.name "github-actions[bot]"