ci: adiciona pipeline do meveum e base das automacoes - #21
Merged
Conversation
Adiciona a configuracao inicial, scripts por contexto e o guia de trabalho da pasta de automacoes. Co-authored-by: Codex <noreply@openai.com>
Configura validacoes de pull request para a API, a web e a estrutura inicial das automacoes Playwright. Co-authored-by: Codex <noreply@openai.com>
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.
Resumo
.github/workflows/ci.yml— adiciona validacao automatica da API e da web em pushes e pull requests paramain.github/workflows/automations.yml— prepara o pipeline da pastaautomations/, com instalacao do Chromium e execucao tolerante a suites ainda vaziasautomations/playwright.config.js— adapta a configuracao inspirada no repo de referencia, separando projetoschromeerestautomations/package.json— adiciona scripts por projeto e por tag para facilitar a futura execucao seletivaautomations/AGENTS.md— registra o roadmap da pasta e torna tags obrigatorias em todos os testesautomations/.gitignore— evita versionar artefatos do Playwright e dependencias locaisTest plan
cd api && ./mvnw test— a suite da API deve concluir sem falhascd web && npm test— os testes unitarios do frontend devem passarcd web && npm run build— o build de producao do Next deve finalizar com sucessocd automations && npm run test:api -- --pass-with-no-tests— a configuracao do projeto REST deve ser reconhecida mesmo antes das specs reaiscd automations && npm run test:frontend -- --pass-with-no-tests— a configuracao do projeto Chrome deve ser reconhecida mesmo antes das specs reais.github/workflows/