Refactor site into decision-first hub; centralize content; add CI and tests#14
Closed
marcelo-m7 wants to merge 1 commit into
Closed
Refactor site into decision-first hub; centralize content; add CI and tests#14marcelo-m7 wants to merge 1 commit into
marcelo-m7 wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Description
src/App.tsx, introducing route-aware metadata and a consistent navigation (Início,Produtos,Serviços,Open Source,Sobre,Conteúdo,Contato).id/htmlFor), validations and human success messages; createdAGENTS.mdandTODO.mdto codify content/UX/architecture rules and remaining work.tests/unit/*,tests/integration/*), Playwright E2E scenarios (tests/e2e/*), updatedtsconfig.json/eslint.config.js, updatedpackage.jsonscripts, generated sitemap and added a GitHub Actions workflow (.github/workflows/ci.yml) to run install → lint → typecheck → tests → E2E → build.Testing
pnpm lintandpnpm typecheckand both completed successfully in the workspace.pnpm test:run(Vitest) and they passed (tests/unitandtests/integrationgreen).pnpm buildand the production build succeeded and sitemap was generated.pnpm test:e2e) in this environment and observed an environment-level blocker: Chromium initially could not launch due to missing system librarylibatk-1.0.so.0; after runningpnpm exec playwright install chromiumto install browsers the E2E suite executed successfully locally, but CI runners may require the same system-level libraries to be present for headless Chromium to run.Codex Task