Adding typecheck to "deno task test"
This commit is contained in:
parent
8230330ed0
commit
5b3dd500e4
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
@ -25,8 +25,5 @@ jobs:
|
|||||||
- name: Run build
|
- name: Run build
|
||||||
run: deno task build
|
run: deno task build
|
||||||
|
|
||||||
- name: Run static type check
|
|
||||||
run: deno task check
|
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: deno task test --trace-ops
|
run: deno task test --trace-ops
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"deep-clean-mac": "rm -f deno.lock && rm -rf $HOME/Library/Caches/deno && deno task clean",
|
"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",
|
"install": "deno install -f --unstable -A --importmap import_map.json silverbullet.ts",
|
||||||
"check": "find . -name '*.ts*' | xargs deno check",
|
"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",
|
"build": "deno run -A build_plugs.ts && deno run -A --unstable build_web.ts",
|
||||||
"plugs": "deno run -A build_plugs.ts",
|
"plugs": "deno run -A build_plugs.ts",
|
||||||
"server": "deno run -A --unstable --check silverbullet.ts",
|
"server": "deno run -A --unstable --check silverbullet.ts",
|
||||||
|
Loading…
Reference in New Issue
Block a user