We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9075a commit 499143fCopy full SHA for 499143f
.github/workflows/publish_jsr.yml
@@ -22,12 +22,15 @@ jobs:
22
23
- name: Set up Deno
24
uses: denoland/setup-deno@v1
25
+
26
+ - name: Check Format
27
+ run: deno fmt --check
28
29
- name: Convert to JSR package
30
run: deno run -A tools/convert_to_jsr.ts
31
- - name: Format
- run: deno fmt --check
32
+ - name: Format converted code
33
+ run: deno fmt
34
35
- name: Lint
36
run: deno lint
@@ -47,4 +50,4 @@ jobs:
47
50
48
51
- name: Publish (real)
49
52
if: startsWith(github.ref, 'refs/tags/')
- run: deno publish
53
+ run: deno publish
0 commit comments