Feature/pav 45 auditoria tecnica modernizacao jobs scraper global#104
Merged
Benevanio merged 4 commits intoMay 27, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
Pull request overview
Esta PR inicia a modernização/auditoria técnica do monorepo, com foco em atualizar a documentação e padronizar fluxo de desenvolvimento e validações locais (Husky + lint-staged + commitlint).
Changes:
- Reescrita e reorganização do
README.mdpara refletir arquitetura atual, quickstart, docker, CI e fluxo de branching. - Inclusão de hooks do Husky (
pre-commit,commit-msg,pre-push) e configuração de commitlint (Conventional Commits). - Adição de scripts e configuração de
lint-stagednopackage.jsonpara validações locais.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Atualiza a documentação para arquitetura/stack atual, comandos, docker, CI e fluxo de trabalho. |
| package.json | Adiciona scripts de bootstrap/hooks e configuração de lint-staged/commitlint. |
| commitlint.config.cjs | Introduz regras de commitlint (types permitidos e subject-case). |
| .husky/pre-push | Executa npm run validate antes do push. |
| .husky/pre-commit | Roda lint-staged no pre-commit. |
| .husky/commit-msg | Valida mensagens de commit com commitlint. |
Comment on lines
66
to
+69
| "husky": "^9.1.7", | ||
| "lint-staged": "^17.0.5", | ||
| "husky": "^9.1.7", | ||
| "lint-staged": "^17.0.5", |
Comment on lines
+14
to
+15
| "setup:dev": "npm ci && npm run prepare && npm run hooks:doctor", | ||
| "hooks:doctor": "node scripts/hooks-doctor.cjs", |
Comment on lines
363
to
367
| Diagnóstico de hooks: | ||
|
|
||
| ```bash | ||
| docker compose run --rm backend node index.js | ||
| npm run hooks:doctor | ||
| ``` |
Comment on lines
+1
to
+2
| module.exports = { | ||
| extends: ["@commitlint/config-conventional"], |
Comment on lines
+13
to
+15
| "prepare": "husky", | ||
| "setup:dev": "npm ci && npm run prepare && npm run hooks:doctor", | ||
| "hooks:doctor": "node scripts/hooks-doctor.cjs", |
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.
PR Description — PAV-45
Auditoria Técnica e Modernização do Projeto Jobs_Scraper_Global
Objetivo
Esta PR inicia o processo de auditoria técnica e modernização estrutural do projeto
Jobs_Scraper_Global, com foco em documentação, padronização de fluxo de desenvolvimento e validação da infraestrutura de qualidade do monorepo.O que foi realizado
Documentação / README
Fluxo de Desenvolvimento
Revisão do fluxo de branching atual
Padronização inicial do fluxo baseado em:
masterdevelopfeature/*Validação do processo de criação de branches a partir da
masterEstruturação do fluxo de PRs e validação contínua
Husky / Git Hooks
Início da auditoria técnica da configuração do Husky
Identificação de possíveis inconsistências em hooks entre branches
Levantamento inicial de problemas relacionados a:
preparecore.hooksPathObjetivos das próximas etapas
Impacto Esperado
Tipo da mudança
Observações
Esta PR representa o início da auditoria estrutural do projeto e poderá ser complementada por PRs menores focadas em: