Compare commits

3 Commits

Author SHA1 Message Date
1b447f5190 chore(gitignore): add .local directory to ignored files
Some checks failed
Auto Changelog & Release / detect-version-change (push) Successful in 3s
Auto Changelog & Release / release (push) Has been skipped
CI / build (push) Failing after 7s
Auto Changelog & Release / changelog-only (push) Successful in 6s
- Updates .gitignore to include the .local directory
- Prevents accidental commits of local configuration files
2025-05-27 15:04:09 +02:00
38c00b035b chore(ci): update deno tasks in CI workflow
- Replace individual deno commands with `deno task` equivalents
- Add benchmark task to the CI workflow for performance testing
2025-05-27 15:04:09 +02:00
6e6e61693f chore(tasks): add benchmark, format, and lint commands
- Introduces a benchmark task for running performance tests
- Adds format and lint tasks to enforce code style and quality
2025-05-27 15:04:09 +02:00
3 changed files with 8 additions and 4 deletions

View File

@@ -24,6 +24,7 @@ jobs:
- name: Run CI Checks - name: Run CI Checks
run: | run: |
deno fmt --check deno task fmt
deno lint deno task lint
deno task test deno task test
deno task benchmark

1
.gitignore vendored
View File

@@ -2,6 +2,7 @@
coverage/ coverage/
logs/ logs/
.locale/ .locale/
.local/
cache/ cache/
out.py out.py
output.txt output.txt

View File

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