Compare commits
3 Commits
d8283ea83a
...
1b447f5190
| Author | SHA1 | Date | |
|---|---|---|---|
|
1b447f5190
|
|||
|
38c00b035b
|
|||
|
6e6e61693f
|
@@ -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
1
.gitignore
vendored
@@ -2,6 +2,7 @@
|
|||||||
coverage/
|
coverage/
|
||||||
logs/
|
logs/
|
||||||
.locale/
|
.locale/
|
||||||
|
.local/
|
||||||
cache/
|
cache/
|
||||||
out.py
|
out.py
|
||||||
output.txt
|
output.txt
|
||||||
|
|||||||
@@ -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"
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user