Signed-off-by: TIANHE <TIANHE@GMAIL.COM>
This commit is contained in:
TIANHE
2026-01-06 04:09:26 +08:00
parent 5f6fd72a3a
commit 491cfece81
+4 -3
View File
@@ -92,9 +92,10 @@ jobs:
# Project uses yarn (as specified in package.json packageManager field) # Project uses yarn (as specified in package.json packageManager field)
# Enable corepack to use the correct yarn version # Enable corepack to use the correct yarn version
corepack enable corepack enable
yarn install --frozen-lockfile # IMPORTANT: skip lifecycle scripts in CI to avoid running `prepare` (husky install),
# Use --frozen-lockfile to ensure reproducible builds and fail if lockfile is out of sync # which fails because `.git` is not present in GitHub Actions checkouts by default.
# HUSKY=0 prevents husky install from running (not needed in CI) yarn install --frozen-lockfile --ignore-scripts
# Use --frozen-lockfile for reproducible installs. Use --ignore-scripts to keep CI non-intrusive.
- name: Frontend lint check - name: Frontend lint check
working-directory: ./quantdinger_vue working-directory: ./quantdinger_vue