From 494a568b9c5349355ca6f81ff22225c3ecdc794d Mon Sep 17 00:00:00 2001 From: Chander Ramesh Date: Sat, 13 Dec 2025 18:12:46 -0800 Subject: [PATCH 1/2] Add tests to the CI job --- cicd.mts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cicd.mts b/cicd.mts index 7d44dec..53336ab 100644 --- a/cicd.mts +++ b/cicd.mts @@ -26,6 +26,9 @@ connect( // Lint runner.withExec(['npm', 'run', 'lint']).sync(); + + // Run tests + runner.withExec(['npm', 'run', 'test']).sync() }, { LogOutput: process.stderr }, ); From 5748900196899d275b644613393f01fdb43c33cc Mon Sep 17 00:00:00 2001 From: Chander Ramesh Date: Sat, 13 Dec 2025 18:31:04 -0800 Subject: [PATCH 2/2] fix formatt --- cicd.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicd.mts b/cicd.mts index 53336ab..5bd3973 100644 --- a/cicd.mts +++ b/cicd.mts @@ -28,7 +28,7 @@ connect( runner.withExec(['npm', 'run', 'lint']).sync(); // Run tests - runner.withExec(['npm', 'run', 'test']).sync() + runner.withExec(['npm', 'run', 'test']).sync(); }, { LogOutput: process.stderr }, );