Conversation
…pendencies - Removed `brace-expansion` and `jsdom` from devDependencies in package.json. - Updated pnpm-lock.yaml to reflect the removal of these dependencies and clean up unnecessary entries. - Adjusted CI workflow to use `pnpm turbo run test` instead of the deprecated `pnpm test:ci` command. - Streamlined test commands in package.json files across packages to enhance consistency.
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Caution Review failedThe pull request is closed. WalkthroughReplaces CI test invocation to use Turborepo ( Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant GH as GitHub Actions
participant Turbo as Turborepo
participant PKG as Workspace Packages
rect rgba(0,128,96,0.06)
GH->>Turbo: run `pnpm turbo run test`
Note right of Turbo: `test` dependsOn: transit\ninputs include vitest.config.ts
Turbo->>PKG: run `transit` tasks
Turbo->>PKG: run package `test` tasks
end
alt tests pass
PKG-->>Turbo: success
Turbo-->>GH: workflow success
else tests fail
PKG-->>Turbo: failure
Turbo-->>GH: workflow failure
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested labels
Poem
Pre-merge checks and finishing touches❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
commit: |
- Introduced a new `test:ui` command in the root package.json for running Vitest with a UI. - Removed `test:ci` and `test:coverage` commands from the www package.json to streamline test scripts and enhance consistency across packages.
There was a problem hiding this comment.
Actionable comments posted: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml
📒 Files selected for processing (6)
.github/workflows/tests.yml(1 hunks)apps/www/package.json(0 hunks)package.json(1 hunks)packages/arkenv/package.json(0 hunks)packages/vite-plugin/package.json(0 hunks)turbo.json(1 hunks)
💤 Files with no reviewable changes (3)
- packages/vite-plugin/package.json
- packages/arkenv/package.json
- apps/www/package.json
- Included default and Vitest configuration file paths as inputs for the test command in turbo.json to enhance test execution context.
brace-expansionandjsdomfrom devDependencies in package.json.pnpm turbo run testinstead of the deprecatedpnpm test:cicommand.Ref:
Summary by CodeRabbit
Tests
Chores
Note