From 9f096817085b182fb9fc1e03c49f20bcfef85652 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 29 Mar 2025 13:37:01 -0600 Subject: [PATCH] chore(workflow): streamline Biome setup by replacing Node.js and pnpm steps with biomeJs action --- .github/workflows/biome.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/.github/workflows/biome.yml b/.github/workflows/biome.yml index b5a6648f..9358caa0 100644 --- a/.github/workflows/biome.yml +++ b/.github/workflows/biome.yml @@ -13,21 +13,11 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: 20 - - - name: Setup pnpm - uses: pnpm/action-setup@v4 - with: - version: 9.5.0 - - - name: Install dependencies - run: pnpm install + - name: Setup biomeJs + uses: biomejs/setup-biome@v2 - name: Run Biome formatter - run: pnpm biome format . --write + run: biome format . --write - name: AutoFix uses: autofix-ci/action@551dded8c6cc8a1054039c8bc0b8b48c51dfc6ef