Skip to content

Commit d93f377

Browse files
committed
updated meta config
1 parent 00b2ba8 commit d93f377

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
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

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
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

deno.jsonc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
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",
@@ -29,13 +37,10 @@
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
}

test_utils/mockRequestInternals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type BodyType, type Request } from "@oak/oak";
1+
import type { BodyType, Request } from "@oak/oak";
22

33
export type MockRequestBodyDefinition = {
44
type: BodyType;

0 commit comments

Comments
 (0)