From d52bec9d87f012b946f1e38a4fce4bb5eb84cc08 Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Sun, 30 Nov 2025 11:28:41 +0700 Subject: [PATCH] fix workflow? --- .github/workflows/prettier.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index d4692b3..ab39b48 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -7,7 +7,12 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: ./.github/actions/setup + - uses: oven-sh/setup-bun@v1 + with: + bun-version: latest + + - name: Install dependencies + run: bun install --frozen-lockfile - name: Run prettier - run: bun format:check + run: bun run format:check