From 475e183cb5b9f9e568eec46133835880b25c9156 Mon Sep 17 00:00:00 2001 From: Tom Keller Date: Tue, 18 Oct 2022 18:11:50 -0700 Subject: [PATCH] fix: change coverage provider --- src/cleanup/index.ts | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cleanup/index.ts b/src/cleanup/index.ts index 6bf6593..26ddf66 100644 --- a/src/cleanup/index.ts +++ b/src/cleanup/index.ts @@ -27,7 +27,7 @@ export async function cleanup() { core.setFailed(errorMessage(error)); } } -/* istanbul ignore next */ +/* c8 ignore start */ if (require.main === module) { (async () => { await cleanup(); diff --git a/src/index.ts b/src/index.ts index 5760389..ed1c73b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -197,7 +197,7 @@ export async function run() { } } -/* istanbul ignore next */ +/* c8 ignore start */ if (require.main === module) { (async () => { await run();