refactor middleware pipeline and improve ci checks #4

Manually merged
maxp merged 14 commits from refactor/pipeline-execution-to-satic into main 2025-05-27 15:07:10 +02:00
Showing only changes of commit d9a984cbea - Show all commits

View File

@@ -6,7 +6,10 @@
},
"tasks": {
"test": "deno test --allow-net --allow-env --unstable-kv --allow-read --allow-write --coverage **/__tests__/*.test.ts",
"test:watch": "deno test --watch --allow-net --allow-env --unstable-kv --allow-read --allow-write **/__tests__/*.test.ts"
"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"
},
"compilerOptions": {
"lib": [
@@ -29,5 +32,4 @@
"main.ts"
]
}
//"importMap": "./import_map.json"
}