Skip to content

Commit 7f382df

Browse files
committed
fixed linting errors
1 parent af1acfe commit 7f382df

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,8 @@ runs:
115115
116116
// Validate that the returned body is a string
117117
if (typeof body !== 'string') {
118-
throw new TypeError(
119-
`Returned value from user script must be a string. Received type '${typeof body}'. ` +
120-
`Please return a string, or serialize your result using JSON.stringify.`
121-
);
118+
throw new TypeError(`Returned value from user script must be a string. Received type '${typeof body}'. `
119+
+ `Please return a string, or serialize your result using JSON.stringify.`);
122120
}
123121
124122
// Output to GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)