Skip to content

Commit 38d16e7

Browse files
committed
fix eslint
1 parent 86a07d9 commit 38d16e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/actions-core/src/action.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import BuildContext from './buildContext';
55
export default class Action {
66
static run<I extends { [key: string]: any }, O extends { [key: string]: any }>(
77
action: (configuration: I) => Promise<O>,
8-
configurationSupplier: (input: Input, context: BuildContext) => I
8+
configurationSupplier: (input: Input, context: BuildContext) => I,
99
) {
1010
try {
1111
const configuration = configurationSupplier(new Input(), new BuildContext());
@@ -14,7 +14,7 @@ export default class Action {
1414
Object.entries(output).forEach(([key, value]) => {
1515
console.log(`${key}: ${JSON.stringify(value)}`);
1616
core.setOutput(key, JSON.stringify(value));
17-
})
17+
}),
1818
)
1919
.catch(this.handleError);
2020
} catch (err) {

0 commit comments

Comments
 (0)