Skip to content

Commit

Permalink
fix: Correct formatting strategy for publishing on jsr (#474)
Browse files Browse the repository at this point in the history
  • Loading branch information
Digifox03 authored Mar 4, 2024
1 parent 5e9075a commit 499143f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/publish_jsr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,15 @@ jobs:

- name: Set up Deno
uses: denoland/setup-deno@v1

- name: Check Format
run: deno fmt --check

- name: Convert to JSR package
run: deno run -A tools/convert_to_jsr.ts

- name: Format
run: deno fmt --check
- name: Format converted code
run: deno fmt

- name: Lint
run: deno lint
Expand All @@ -47,4 +50,4 @@ jobs:

- name: Publish (real)
if: startsWith(github.ref, 'refs/tags/')
run: deno publish
run: deno publish

1 comment on commit 499143f

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No typecheck tests failure

This error was most likely caused by incorrect type stripping from the SWC crate

Please report the following failure to https://github.com/denoland/deno with a reproduction of the current commit

Failure log

Please sign in to comment.