From 5b5ededb1dc7a684f5e8a9e6287930fe7862d681 Mon Sep 17 00:00:00 2001 From: TIANHE Date: Tue, 6 Jan 2026 04:00:41 +0800 Subject: [PATCH] new --- .github/workflows/basic-ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/basic-ci.yml b/.github/workflows/basic-ci.yml index f87ef5b..e97fff9 100644 --- a/.github/workflows/basic-ci.yml +++ b/.github/workflows/basic-ci.yml @@ -85,8 +85,11 @@ jobs: - name: Install dependencies working-directory: ./quantdinger_vue run: | - npm ci - # Use npm ci for faster, reliable, reproducible builds in CI. + # Project uses yarn (as specified in package.json packageManager field) + # Enable corepack to use the correct yarn version + corepack enable + yarn install --frozen-lockfile + # Use --frozen-lockfile to ensure reproducible builds and fail if lockfile is out of sync - name: Frontend lint check working-directory: ./quantdinger_vue