-
-
Notifications
You must be signed in to change notification settings - Fork 103
Fix CI failures: restore root bin/shakapacker-config and fix prettier #858
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
Conversation
PR #841 moved bin/shakapacker-config to spec/dummy/bin/shakapacker-config, which broke the integration tests that expect it at the project root. Additionally, the spec/dummy version had double quotes that conflict with the local .prettierrc.yaml (singleQuote: true). This commit: - Restores bin/shakapacker-config at the project root for integration tests - Fixes quote style in spec/dummy/bin/shakapacker-config to use single quotes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
Warning Rate limit exceeded@justin808 has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 4 minutes and 53 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (2)
✨ Finishing touches🧪 Generate unit tests (beta)
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 |
Greptile SummaryThis PR fixes two pre-existing CI failures introduced by PR #841: restores
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant CI as CI Pipeline
participant Prettier as Prettier Linter
participant Tests as Integration Tests
participant Root as bin/shakapacker-config
participant Dummy as spec/dummy/bin/shakapacker-config
Note over CI,Dummy: Before PR #858 (after PR #841)
CI->>Prettier: Run prettier --check
Prettier->>Dummy: Check quote style
Dummy-->>Prettier: ❌ Double quotes found (expects single)
Prettier-->>CI: ❌ Linting failed
CI->>Tests: Run integration tests
Tests->>Root: Look for bin/shakapacker-config
Root-->>Tests: ❌ File not found (moved to spec/dummy)
Tests-->>CI: ❌ Tests failed
Note over CI,Dummy: After PR #858
CI->>Prettier: Run prettier --check
Prettier->>Dummy: Check quote style
Dummy-->>Prettier: ✓ Single quotes match config
Prettier-->>CI: ✓ Linting passed
CI->>Tests: Run integration tests
Tests->>Root: Look for bin/shakapacker-config
Root-->>Tests: ✓ File found at root
Tests-->>CI: ✓ Tests passed
|
Code ReviewSummaryThis PR successfully fixes two pre-existing CI failures by:
Code Quality ✅Strengths:
Potential Issues
|
Summary
bin/shakapacker-configat project root (was moved by PR Fix development for spec/dummy #841, breaking integration tests)spec/dummy/bin/shakapacker-configto match local.prettierrc.yaml(single quotes)This fixes two pre-existing CI failures that appear on the main branch:
spec/dummy/bin/shakapacker-configbin/shakapacker-configTest plan
yarn prettier --check .passesyarn lintpassesyarn testpasses (319 tests)🤖 Generated with Claude Code