Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node-version: 22
cache: npm
- name: Install CLI dependencies
run: npm ci --prefix packages/cli
run: npm ci
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.github/workflows/ci.yml:23-24 — This step is named “Install CLI dependencies” but now runs npm ci at the repo root (installing all workspaces); consider renaming to avoid confusion (also applies to the test job).

Severity: low

Other Locations
  • .github/workflows/ci.yml:39

Fix This in Augment

🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.

- name: Run lint
run: npm run lint --prefix packages/cli

Expand All @@ -36,6 +36,6 @@ jobs:
node-version: 22
cache: npm
- name: Install CLI dependencies
run: npm ci --prefix packages/cli
run: npm ci
- name: Run tests
run: npm test --prefix packages/cli
run: npm test --prefix packages/cli
Loading
Loading