From d2fa3b84352d0b9d01da8a025eaba4efd6b0941e Mon Sep 17 00:00:00 2001 From: Derrick Marcey Date: Wed, 26 Jun 2019 14:35:18 -0400 Subject: [PATCH] Ran formatting --- __tests__/main.test.ts | 3 +-- src/main.ts | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) 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();