From 220a1f320fd2994abcc825155b19196a2d1dff91 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Tue, 5 Aug 2025 19:56:51 +0800 Subject: [PATCH] :bug: update format cli --- .github/workflows/code-quality.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index a34f3fe..e156eb1 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -24,10 +24,15 @@ jobs: uses: actions/setup-node@v4 with: node-version: "20" - cache: "npm" + cache: "pnpm" + + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: latest - name: Install dependencies - run: npm ci + run: pnpm install --frozen-lockfile - name: Check EditorConfig compliance uses: editorconfig-checker/action-editorconfig-checker@main