1
0

Adding typecheck to "deno task test"

This commit is contained in:
Zef Hemel 2024-01-08 16:32:43 +01:00
parent 8230330ed0
commit 5b3dd500e4
2 changed files with 1 additions and 4 deletions

View File

@ -25,8 +25,5 @@ jobs:
- name: Run build
run: deno task build
- name: Run static type check
run: deno task check
- name: Run tests
run: deno task test --trace-ops

View File

@ -4,7 +4,7 @@
"deep-clean-mac": "rm -f deno.lock && rm -rf $HOME/Library/Caches/deno && deno task clean",
"install": "deno install -f --unstable -A --importmap import_map.json silverbullet.ts",
"check": "find . -name '*.ts*' | xargs deno check",
"test": "deno test -A --unstable",
"test": "deno task check && deno test -A --unstable",
"build": "deno run -A build_plugs.ts && deno run -A --unstable build_web.ts",
"plugs": "deno run -A build_plugs.ts",
"server": "deno run -A --unstable --check silverbullet.ts",