-
Notifications
You must be signed in to change notification settings - Fork 0
fix(ci): repair vibecoder workflow templates #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,15 +41,12 @@ jobs: | |
| echo "CVEs found: $COUNT" | ||
|
|
||
| - name: Add Node.js (fnm) to PATH | ||
| if: steps.check.outputs.count != '0' | ||
| run: echo "$HOME/.local/share/fnm/node-versions/v24.14.0/installation/bin" >> $GITHUB_PATH | ||
|
|
||
| - name: Enable pnpm via corepack | ||
| run: corepack enable pnpm | ||
|
|
||
| if: steps.check.outputs.count != '0' | ||
| with: | ||
| node-version: "24.14.0" | ||
| cache: 'npm' | ||
| run: corepack enable pnpm | ||
|
Comment on lines
47
to
+49
|
||
|
|
||
| - name: Auto-fix CVEs via npm overrides | ||
| if: steps.check.outputs.count != '0' | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pnpm install --frozen-lockfilewill fail whenpnpm-lock.yamlis missing or out of date. This repo currently haspackage-lock.jsonbut nopnpm-lock.yaml, so the CI job is still expected to error. Either commit a generatedpnpm-lock.yaml(and keep it updated) or switch the workflow install/lint/typecheck steps to use npm (npm ci/npm run ...) to match the tracked lockfile.