We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52b92dc commit 0bf4d92Copy full SHA for 0bf4d92
.github/workflows/deno.yml
@@ -27,4 +27,7 @@ jobs:
27
run: deno lint
28
29
- name: Run tests
30
- run: deno test --allow-none
+ run: deno task test
31
+
32
+ - name: Run type check
33
+ run: deno check *.ts && deno check **/*.ts
deno.jsonc
@@ -1,3 +1,6 @@
1
{
2
- "importMap": "import_map.json"
+ "importMap": "import_map.json",
3
+ "tasks": {
4
+ "test": "deno fmt --check && deno lint && deno test --allow-read --allow-none"
5
+ }
6
}
0 commit comments