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
This commit is contained in:
@@ -9,7 +9,8 @@
|
|||||||
"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",
|
"benchmark": "deno bench --allow-net --allow-env --unstable-kv --allow-read --allow-write **/__bench__/*.bench.ts",
|
||||||
"fmt": "deno fmt --check",
|
"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": {
|
"compilerOptions": {
|
||||||
"lib": [
|
"lib": [
|
||||||
|
Reference in New Issue
Block a user