From 905da8e34adc2e025481f620b1a49d6fa0fea408 Mon Sep 17 00:00:00 2001 From: chengyongru <2755839590@qq.com> Date: Tue, 14 Jul 2026 22:55:06 +0800 Subject: [PATCH] ci(webui): verify npm and bun lockfiles --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be16b708..6724dc3a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,9 +64,13 @@ jobs: with: bun-version: 1.3.6 + - name: Verify npm lockfile + working-directory: webui + run: npm ci --ignore-scripts --dry-run + - name: Install WebUI dependencies working-directory: webui - run: bun install + run: bun install --frozen-lockfile - name: Lint WebUI working-directory: webui