From 9d6d35898e42ba95e59b2ff7a71b332d0cb9a89e Mon Sep 17 00:00:00 2001 From: James Prevett Date: Thu, 16 Jan 2025 22:31:08 -0600 Subject: [PATCH] Fix spelling --- scripts/ci.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ci.js b/scripts/ci.js index dbf99f63..f4408a70 100644 --- a/scripts/ci.js +++ b/scripts/ci.js @@ -19,7 +19,7 @@ export const checkNames = { lint: 'Linting', build: 'Build', // Tests - 'Common Tests': 'Unit tests (common)', + 'Common tests': 'Unit tests (common)', memory: 'Unit tests (InMemory)', context: 'Unit tests (contexts)', index: 'Unit tests (Index)', @@ -71,4 +71,5 @@ export async function completeCheck(id, conclusion, title = '', summary = '') { output: { title, summary }, }); check.completed = true; + checks.set(id, check); }