There was an error while loading. Please reload this page.
1 parent 5f6fd72 commit 491cfecCopy full SHA for 491cfec
1 file changed
.github/workflows/basic-ci.yml
@@ -92,9 +92,10 @@ jobs:
92
# Project uses yarn (as specified in package.json packageManager field)
93
# Enable corepack to use the correct yarn version
94
corepack enable
95
- yarn install --frozen-lockfile
96
- # Use --frozen-lockfile to ensure reproducible builds and fail if lockfile is out of sync
97
- # HUSKY=0 prevents husky install from running (not needed in CI)
+ # IMPORTANT: skip lifecycle scripts in CI to avoid running `prepare` (husky install),
+ # which fails because `.git` is not present in GitHub Actions checkouts by default.
+ yarn install --frozen-lockfile --ignore-scripts
98
+ # Use --frozen-lockfile for reproducible installs. Use --ignore-scripts to keep CI non-intrusive.
99
100
- name: Frontend lint check
101
working-directory: ./quantdinger_vue
0 commit comments