chore: remove unused node build pipeline - #136
Conversation
WalkthroughThis pull request removes the build and validation scripts infrastructure from the repository. Changes include deletion of Changes
Sequence Diagram(s)sequenceDiagram
participant CI as GitHub Actions<br/>CI Workflow
participant Steps as Workflow Steps
rect rgb(200, 220, 255)
Note over CI,Steps: Previous Flow
CI->>Steps: Install dependencies
CI->>Steps: Lint
CI->>Steps: Format check
CI->>Steps: Tests
CI->>Steps: Build (REMOVED)
CI->>Steps: Validate (REMOVED)
end
rect rgb(220, 255, 220)
Note over CI,Steps: New Flow
CI->>Steps: Install dependencies
CI->>Steps: Lint
CI->>Steps: Format check
CI->>Steps: Tests
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes
Possibly related PRs
Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (9)
💤 Files with no reviewable changes (6)
🔇 Additional comments (3)
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 |
概要
npm run build/npm run validateエントリポイントとscripts/配下の重複ロジックを削除し、lint と Jest に一本化しましたテスト
Summary by CodeRabbit
Build Process
Refactor
Tests
Documentation