From 39e39a9699982653f0d1df2e845d8098fd79dbd9 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Tue, 27 May 2025 14:56:03 +0200 Subject: [PATCH] chore(config): add CI task for local checks - Introduces a new "ci" task to streamline local CI workflows - Combines formatting, linting, testing, and benchmarking for convenience --- deno.jsonc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deno.jsonc b/deno.jsonc index 2707c45..e13a592 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -9,7 +9,8 @@ "test:watch": "deno test --watch --allow-net --allow-env --unstable-kv --allow-read --allow-write **/__tests__/*.test.ts", "benchmark": "deno bench --allow-net --allow-env --unstable-kv --allow-read --allow-write **/__bench__/*.bench.ts", "fmt": "deno fmt --check", - "lint": "deno lint" + "lint": "deno lint", + "ci": "deno task fmt && deno task lint && deno task test && deno task benchmark" // For local CI checks }, "compilerOptions": { "lib": [