File tree Expand file tree Collapse file tree 4 files changed +16
-5
lines changed Expand file tree Collapse file tree 4 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 2828 - name : Run linter
2929 run : deno lint
3030
31+ - name : Check doc
32+ run : deno task check-doc
33+
3134 - name : Run tests
3235 run : |
3336 deno test -A --coverage=cov_profile
Original file line number Diff line number Diff line change 2626 - name : Run linter
2727 run : deno lint --ignore=\*\*\/\*_test.ts
2828
29+ - name : Check doc
30+ run : deno task check-doc
31+
2932 - name : Run tests
3033 run : deno test -A
3134
Original file line number Diff line number Diff line change 55 "." : " ./mod.ts" ,
66 "./mod" : " ./mod.ts"
77 },
8+ "publish" : {
9+ "exclude" : [
10+ " ./test_utils" ,
11+ " **/*_test.ts" ,
12+ " ./CONTRIBUTING.md" ,
13+ " ./GOVERNANCE.md"
14+ ]
15+ },
816 "tasks" : {
917 "pretty" : " deno lint --ignore=docs && deno check . && deno fmt" ,
1018 "test" : " deno test -RE" ,
2937 },
3038 "exclude" : [
3139 " ./docs" ,
32- " ./test_utils" ,
3340 " cov_profile" ,
3441 " cov_profile.lcov" ,
3542 " **/__snapshots__" ,
3643 " .github" ,
37- " .vscode" ,
38- " ./CONTRIBUTING.md" ,
39- " ./GOVERNANCE.md"
44+ " .vscode"
4045 ]
4146}
Original file line number Diff line number Diff line change 1- import { type BodyType , type Request } from "@oak/oak" ;
1+ import type { BodyType , Request } from "@oak/oak" ;
22
33export type MockRequestBodyDefinition = {
44 type : BodyType ;
You can’t perform that action at this time.
0 commit comments