From 02348f76ef8ef82739d1506a0f9bdd53ba01c1db Mon Sep 17 00:00:00 2001 From: Tw93 Date: Tue, 5 Aug 2025 20:08:17 +0800 Subject: [PATCH] :wrench: Restore frozen-lockfile for consistent CI builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep pnpm-lock.yaml in version control and use --frozen-lockfile to ensure reproducible builds across all environments. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/code-quality.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 0f05067..c93b7bf 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -32,7 +32,7 @@ jobs: cache: "pnpm" - name: Install dependencies - run: pnpm install --no-frozen-lockfile + run: pnpm install --frozen-lockfile - name: Check EditorConfig compliance uses: editorconfig-checker/action-editorconfig-checker@main