From 1bee8700dd18c3411acf5edba8f4c826ada36b4b Mon Sep 17 00:00:00 2001 From: Benjamin Fischer <61995275+c4spar@users.noreply.github.com> Date: Sat, 28 Sep 2024 22:37:23 +0200 Subject: [PATCH] chore(deno): add test:all, node and bun task (#750) --- deno.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deno.json b/deno.json index 38688304..a4161f68 100644 --- a/deno.json +++ b/deno.json @@ -15,7 +15,10 @@ "tasks": { "lint": "deno lint && deno fmt --check", "fmt": "deno fmt", + "node": "pnpm tsx", + "bun": "bun run", "test": "deno task test:deno", + "test:all": "deno task clean && deno task test:deno && deno task setup:node && deno task test:node && deno task clean", "test:deno": "deno task test:deno-v2", "test:deno-v1": "deno task test:deno-v2 --doc --ignore=./CHANGELOG.md", "test:deno-v2": "deno test --allow-run=deno --allow-env --allow-read --allow-write=./ --parallel",