Skip to content

Commit

Permalink
updated meta config
Browse files Browse the repository at this point in the history
  • Loading branch information
Thesephi committed Dec 15, 2024
1 parent 00b2ba8 commit d93f377
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- name: Run linter
run: deno lint

- name: Check doc
run: deno task check-doc

- name: Run tests
run: |
deno test -A --coverage=cov_profile
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- name: Run linter
run: deno lint --ignore=\*\*\/\*_test.ts

- name: Check doc
run: deno task check-doc

- name: Run tests
run: deno test -A

Expand Down
13 changes: 9 additions & 4 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
".": "./mod.ts",
"./mod": "./mod.ts"
},
"publish": {
"exclude": [
"./test_utils",
"**/*_test.ts",
"./CONTRIBUTING.md",
"./GOVERNANCE.md"
]
},
"tasks": {
"pretty": "deno lint --ignore=docs && deno check . && deno fmt",
"test": "deno test -RE",
Expand All @@ -29,13 +37,10 @@
},
"exclude": [
"./docs",
"./test_utils",
"cov_profile",
"cov_profile.lcov",
"**/__snapshots__",
".github",
".vscode",
"./CONTRIBUTING.md",
"./GOVERNANCE.md"
".vscode"
]
}
2 changes: 1 addition & 1 deletion test_utils/mockRequestInternals.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type BodyType, type Request } from "@oak/oak";
import type { BodyType, Request } from "@oak/oak";

export type MockRequestBodyDefinition = {
type: BodyType;
Expand Down

0 comments on commit d93f377

Please sign in to comment.