diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 7df9bad..48f15ff 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -1,4 +1,3 @@ describe('TODO - Add a test suite', () => { - it('TODO - Add a test', async () => { - }); + it('TODO - Add a test', async () => {}); }); diff --git a/src/main.ts b/src/main.ts index 9e81013..a461915 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,7 +2,7 @@ import * as core from '@actions/core'; async function run() { const myInput = core.getInput('myInput'); - core.debug(`Hello ${myInput}`) + core.debug(`Hello ${myInput}`); } -run(); \ No newline at end of file +run();