WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 0641d18

Browse files
committed
ci: update GitHub Actions to use direct deno commands
- Change from deno task commands to direct deno commands - Use deno fmt --check instead of deno task fmt --check - Use deno lint instead of deno task lint - Use deno check instead of deno task check
1 parent 2d11f01 commit 0641d18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
deno-version: v2.x
2525

2626
- name: Check formatting
27-
run: deno task fmt --check
27+
run: deno fmt --check
2828

2929
- name: Lint code
30-
run: deno task lint
30+
run: deno lint
3131

3232
- name: Type check
33-
run: deno task check
33+
run: deno check
3434

3535
- name: Publish packages to JSR
3636
run: deno publish

0 commit comments

Comments
 (0)