This commit is contained in:
TIANHE
2026-01-06 04:00:41 +08:00
parent 9b4f0c16ac
commit 5b5ededb1d
+5 -2
View File
@@ -85,8 +85,11 @@ jobs:
- name: Install dependencies - name: Install dependencies
working-directory: ./quantdinger_vue working-directory: ./quantdinger_vue
run: | run: |
npm ci # Project uses yarn (as specified in package.json packageManager field)
# Use npm ci for faster, reliable, reproducible builds in CI. # 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 - name: Frontend lint check
working-directory: ./quantdinger_vue working-directory: ./quantdinger_vue