From 00cf65022ffbecf121f0ac4d7158772d57e35735 Mon Sep 17 00:00:00 2001 From: Cooper Date: Mon, 10 Apr 2023 15:05:29 -0400 Subject: [PATCH] fix(action): move info sequence for failonerrors --- src/action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/action.js b/src/action.js index fe124d7..5cf6d41 100644 --- a/src/action.js +++ b/src/action.js @@ -149,8 +149,8 @@ const showLintResults = async ([from, to]) => { // https://github.com/actions/toolkit/tree/master/packages/core#exit-codes // this would be a good place to implement the setNeutral() when it's eventually implimented. // for now it can pass with a check mark. - console.log('Passing despite errors ✅') console.log(formattedResults) + console.log('Passing despite errors ✅') } else if (formattedResults) { setFailedAction(formattedResults) } else {