|
| 1 | +diff --git a/.github/workflows/platform-validation.yml b/.github/workflows/platform-validation.yml |
| 2 | +index e618de60b..c08529826 100644 |
| 3 | +--- a/.github/workflows/platform-validation.yml |
| 4 | ++++ b/.github/workflows/platform-validation.yml |
| 5 | +@@ -20,4 +20,4 @@ jobs: |
| 6 | + node-version: "20" |
| 7 | + |
| 8 | + - name: Run Platform Validation Suite |
| 9 | +- run: node ./scripts/run-platform-validation-suite.mjs |
| 10 | ++ run: node ./dev/scripts/run-platform-validation-suite.mjs |
| 11 | +diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md |
| 12 | +index 0a07f079c..a8174a6fd 100644 |
| 13 | +--- a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md |
| 14 | ++++ b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts.md |
| 15 | +@@ -14,6 +14,7 @@ Move local/test bootstrap scripts and dev-only runner scripts/config into the de |
| 16 | + - Moved tracked root `scripts/` files to `dev/scripts/`. |
| 17 | + - Moved root Playwright configs to `dev/config/`. |
| 18 | + - Updated `package.json` scripts to call `dev/scripts/`. |
| 19 | ++- Updated GitHub Actions platform validation to call `node ./dev/scripts/run-platform-validation-suite.mjs`. |
| 20 | + - Updated moved script repo-root calculations, script self-references, PowerShell helper paths, and tests that import script modules. |
| 21 | + - Kept application runtime/business logic out of `dev/`. |
| 22 | + |
| 23 | +@@ -45,6 +46,8 @@ Documentation/dev-runner/config only. No product UI, API, database, `src/`, `doc |
| 24 | + | PASS | Playwright structure audit through moved runner | npm run test:audit:locations | |
| 25 | + | PASS | Playwright moved config discovery | npx playwright test --config=dev/config/playwright.config.cjs --list | |
| 26 | + | PASS | Canonical structure validation | npm run validate:canonical-structure | |
| 27 | ++| PASS | GitHub Actions platform-validation path | Workflow now calls node ./dev/scripts/run-platform-validation-suite.mjs; targeted grep confirms no .github workflow still calls node ./scripts/run-platform-validation-suite.mjs. | |
| 28 | ++| PASS | Platform validation suite | node ./dev/scripts/run-platform-validation-suite.mjs completed 8/8 scenarios. | |
| 29 | + | PASS | Whitespace validation | git diff --check -- . | |
| 30 | + |
| 31 | + ## Manual Validation Notes |
| 32 | +@@ -52,6 +55,7 @@ Documentation/dev-runner/config only. No product UI, API, database, `src/`, `doc |
| 33 | + - No UI changes were made. |
| 34 | + - Full browser Playwright execution was not run; PR_006 changed runner/config placement, so validation used structure audit and `--list` discovery with the moved config. |
| 35 | + - `npm run dev:local-api` was not left running; the moved startup module was imported successfully and the package script points to the moved file. |
| 36 | ++- PR #241 CI blocker was a workflow script path issue only; no runtime behavior or file moves were changed for this fix. |
| 37 | + |
| 38 | + ## Changed Files |
| 39 | + |
| 40 | +diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md |
| 41 | +index e30418103..d00f59e1a 100644 |
| 42 | +--- a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md |
| 43 | ++++ b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_branch-validation.md |
| 44 | +@@ -6,5 +6,5 @@ Generated: 2026-06-27T19:11:00.890Z |
| 45 | + | --- | --- | --- | |
| 46 | + | Current branch is PR branch | PASS | PR_26179_OWNER_006-move-bootstrap-scripts | |
| 47 | + | Branch is stacked on previous PR branch | PASS | Base branch: PR_26179_OWNER_005-move-tests-to-dev | |
| 48 | +-| Worktree contains only intended project changes before commit | PASS | Script/config move, package path updates, validation docs/tests, reports. | |
| 49 | ++| Worktree contains only intended project changes before commit | PASS | Script/config move, package path updates, validation docs/tests, reports, and GitHub Actions moved-script path correction. | |
| 50 | + | Product/runtime path hard stop avoided | PASS | No product/runtime directory was moved into dev/. | |
| 51 | +diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md |
| 52 | +index acd139c6a..f82cff1cb 100644 |
| 53 | +--- a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md |
| 54 | ++++ b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_manual-validation-notes.md |
| 55 | +@@ -4,3 +4,5 @@ |
| 56 | + - No browser storage, API contract, database schema, or product behavior changed. |
| 57 | + - Playwright browser execution was not run because this PR moves dev runner/config paths only; moved config discovery and structure audit passed. |
| 58 | + - Local API startup was validated by importing the moved startup module and by checking `package.json` command routing. |
| 59 | ++- GitHub Actions platform-validation path was corrected from `node ./scripts/run-platform-validation-suite.mjs` to `node ./dev/scripts/run-platform-validation-suite.mjs`. |
| 60 | ++- Local platform validation completed 8/8 scenarios after the workflow path fix. |
| 61 | +diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md |
| 62 | +index b69e7145f..8939747f1 100644 |
| 63 | +--- a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md |
| 64 | ++++ b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_requirement-checklist.md |
| 65 | +@@ -5,6 +5,7 @@ |
| 66 | + | PASS | Move local/test bootstrap scripts and dev-only runner scripts/config into dev/bootstrap/, dev/scripts/, or dev/config/. | Moved tracked root scripts/ to dev/scripts/ and Playwright configs to dev/config/. | |
| 67 | + | PASS | Keep application runtime/business logic out of dev/. | No src/, product UI, API contract, database, assets, docs/, games/, toolbox/, account/, admin/, or legal runtime files were moved into dev/. | |
| 68 | + | PASS | Ensure npm run dev:local-api still works. | package.json now points dev:local-api at dev/scripts/start-local-api-server.mjs; syntax/import validation passed without launching a long-running server. | |
| 69 | ++| PASS | GitHub Actions references moved script paths. | .github/workflows/platform-validation.yml now runs node ./dev/scripts/run-platform-validation-suite.mjs. | |
| 70 | + | PASS | No Creator-writeable repo folder introduced. | This PR moves dev tooling only and adds no Creator data write path. | |
| 71 | + | PASS | No runtime/business logic scope expansion. | Changes are limited to dev scripts/config, package script paths, validation tests/docs, and generated reports. | |
| 72 | + | PASS | No broad unrelated cleanup. | No product/runtime implementation files were changed. | |
| 73 | +diff --git a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md |
| 74 | +index 2592e1ef6..dd8d9f18b 100644 |
| 75 | +--- a/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md |
| 76 | ++++ b/dev/docs_build/dev/reports/PR_26179_OWNER_006-move-bootstrap-scripts_validation-lane.md |
| 77 | +@@ -11,4 +11,6 @@ |
| 78 | + | PASS | Playwright structure audit through moved runner | npm run test:audit:locations | |
| 79 | + | PASS | Playwright moved config discovery | npx playwright test --config=dev/config/playwright.config.cjs --list | |
| 80 | + | PASS | Canonical structure validation | npm run validate:canonical-structure | |
| 81 | ++| PASS | GitHub Actions platform-validation path | Workflow now calls node ./dev/scripts/run-platform-validation-suite.mjs; targeted grep confirms no .github workflow still calls node ./scripts/run-platform-validation-suite.mjs. | |
| 82 | ++| PASS | Platform validation suite | node ./dev/scripts/run-platform-validation-suite.mjs completed 8/8 scenarios. | |
| 83 | + | PASS | Whitespace validation | git diff --check -- . | |
| 84 | + |
1 | 85 | diff --git a/codex_playwright_system_chrome.config.cjs b/dev/config/codex_playwright_system_chrome.config.cjs |
2 | 86 | similarity index 100% |
3 | 87 | rename from codex_playwright_system_chrome.config.cjs |
|
0 commit comments