Task 1: Minimal Monorepo Scaffold + CI
完了 ← タスク一覧
Task 001: Minimal Monorepo Scaffold + CI
Status: DONE
Goal
Create the minimal project scaffold with one passing Rust test, one passing TS test, and a CI workflow that runs both.
Details
- Rust workspace with a
crates/directory, initialsolar-line-corecrate - TypeScript project with
package.json, basic test setup - GitHub Actions CI: run
cargo testand TS tests .gitignorefor raw data, build artifacts- Basic directory structure:
crates/,ts/,reports/,scripts/
Acceptance Criteria
cargo testpasses with at least one test- TS test runner passes with at least one test
- CI workflow file exists and would run both