Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ jobs:
with:
deno-version: v2.x

- name: format
run: deno task fmt:check
- name: verify
run: deno task verify

- name: lint
run: deno lint
Expand Down
5 changes: 4 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"fmt:check": "deno fmt --check && clang-format --dry-run --Werror src/*.c src/*.h",
"build:npm": "deno run -A tasks/build-npm.ts",
"build:jsr": "deno run -A tasks/build-jsr.ts",
"bench": "deno run -A bench/mod.ts"
"bench": "deno run -A bench/mod.ts",
"gen-wcwidth": "deno run --allow-net --allow-write=src/wcwidth.c tasks/gen-wcwidth.ts",
"gen-wcwidth:check": "deno run --allow-net --allow-read=src/wcwidth.c tasks/gen-wcwidth.ts --check",
"verify": "deno task fmt:check && deno task gen-wcwidth:check"
},
"imports": {
"@std/testing": "jsr:@std/testing@1",
Expand Down
Loading
Loading