From 9f132dcc114e55115cd9a7e2c50c45df668d9b25 Mon Sep 17 00:00:00 2001 From: Jules Lasne Date: Thu, 22 Jun 2023 11:54:44 +0200 Subject: [PATCH] Fixed typo in action report Fixed typo in action report when coverage is lower than expected --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 99eedac..3f20cc8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -28,7 +28,7 @@ async function run(): Promise { const passOverall = scorePr(filesCoverage) if (!passOverall) { - core.setFailed('Coverage is lower then configured threshold 😭') + core.setFailed('Coverage is lower than configured threshold 😭') } } catch (error) { const message = JSON.stringify(error instanceof Error ? error.message : error)