Skip to content

Commit

Permalink
fix eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
agaengel committed May 27, 2024
1 parent 86a07d9 commit 38d16e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/actions-core/src/action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import BuildContext from './buildContext';
export default class Action {
static run<I extends { [key: string]: any }, O extends { [key: string]: any }>(
action: (configuration: I) => Promise<O>,
configurationSupplier: (input: Input, context: BuildContext) => I
configurationSupplier: (input: Input, context: BuildContext) => I,
) {
try {
const configuration = configurationSupplier(new Input(), new BuildContext());
Expand All @@ -14,7 +14,7 @@ export default class Action {
Object.entries(output).forEach(([key, value]) => {
console.log(`${key}: ${JSON.stringify(value)}`);
core.setOutput(key, JSON.stringify(value));
})
}),
)
.catch(this.handleError);
} catch (err) {
Expand Down

0 comments on commit 38d16e7

Please sign in to comment.