Skip to content

Commit

Permalink
Add test step to publish CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel-rowe committed Aug 25, 2024
1 parent 111ce94 commit ba7e456
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,16 @@ jobs:
contents: read
id-token: write # The OIDC ID token is used for authentication with JSR.
steps:
- uses: actions/checkout@v4
- run: npx jsr publish
- name: Clone repo
uses: actions/checkout@v4

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

- name: Test
run: deno task test

- name: Publish to JSR
run: deno publish

0 comments on commit ba7e456

Please sign in to comment.