-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test: testando action #1
Conversation
@@ -29923,10 +29923,14 @@ function wrappy (fn, cb) { | |||
|
|||
Object.defineProperty(exports, "__esModule", ({ value: true })); | |||
exports.wait = void 0; | |||
exports.stringify = stringify; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A função 'stringify' está sendo exportada duas vezes.
A linha 29926 exporta 'stringify' duas vezes, o que é redundante. A exportação deve ser feita apenas uma vez.
@@ -30012,13 +30017,14 @@ async function getPRDetails() { | |||
if (!token) | |||
throw new Error('GITHUB_TOKEN is not set'); | |||
const event = getEventData(); | |||
console.log('EVENT:', event); | |||
console.log('EVENT: \n', (0, helpers_1.stringify)(event)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uso de console.log para debug
O uso de 'console.log' para depuração pode não ser ideal em um ambiente de produção. Considere usar um mecanismo de logging mais robusto que permita diferentes níveis de log e melhor gerenciamento de saída.
const wait = (timeout) => { | ||
return new Promise(resolve => setTimeout(resolve, timeout)); | ||
}; | ||
exports.wait = wait; | ||
function stringify(obj) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Função 'stringify' adicionada sem verificação de tipo
Para garantir a segurança e evitar erros de execução, é importante definir tipos para os parâmetros de funções, especialmente em TypeScript.
@@ -30012,13 +30017,14 @@ async function getPRDetails() { | |||
if (!token) | |||
throw new Error('GITHUB_TOKEN is not set'); | |||
const event = getEventData(); | |||
console.log('EVENT:', event); | |||
console.log('EVENT: \n', (0, helpers_1.stringify)(event)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uso de 'console.log' para depuração
O uso de 'console.log' para depuração em código de produção não é recomendado. Considere usar uma biblioteca de logging apropriada que permita diferentes níveis de log e melhor controle sobre a saída.
Teste de action