Skip to content

Commit

Permalink
refactor: altera output
Browse files Browse the repository at this point in the history
  • Loading branch information
katiacih committed Aug 4, 2023
1 parent fc81458 commit 2394fd1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9433,9 +9433,9 @@ function runStepsEvaluator(pathList) {
// const enc = new Base64();
// const b64 = enc.urlEncode('some url data');

const outputJSON = JSON.parse(JSON.stringify({'github_username': 'katiacih',
'github_repository': 'sd-000-projeto-android-trybe-genius-2023-07-31-09-23-00',
'evaluations': [{'grade': '1', 'description': 'GeniusLogic'}]}))
// var texto = '{"atributo1": "valor 1", "atributo2": 23}';

const outputJSON = JSON.parse('{"github_username": "katiacih","github_repository": "sd-000-projeto-android-trybe-genius-2023-07-31-09-23-00", "evaluations": [{"grade": "1", "description": "GeniusLogic"}]}')

core.info(`\u001b[32;5;6m 🚀 BASE 64 -> ${outputJSON}`)

Expand Down
6 changes: 3 additions & 3 deletions src/controller/evaluator.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ function runStepsEvaluator(pathList) {
// const enc = new Base64();
// const b64 = enc.urlEncode('some url data');

const outputJSON = JSON.parse(JSON.stringify({'github_username': 'katiacih',
'github_repository': 'sd-000-projeto-android-trybe-genius-2023-07-31-09-23-00',
'evaluations': [{'grade': '1', 'description': 'GeniusLogic'}]}))
// var texto = '{"atributo1": "valor 1", "atributo2": 23}';

const outputJSON = JSON.parse('{"github_username": "katiacih","github_repository": "sd-000-projeto-android-trybe-genius-2023-07-31-09-23-00", "evaluations": [{"grade": "1", "description": "GeniusLogic"}]}')

core.info(`\u001b[32;5;6m 🚀 BASE 64 -> ${outputJSON}`)

Expand Down

0 comments on commit 2394fd1

Please sign in to comment.