Skip to content

Commit

Permalink
feat: move to JSR
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Oct 7, 2024
1 parent 102c9fe commit 6844e1e
Show file tree
Hide file tree
Showing 28 changed files with 886 additions and 528 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@ on: [push, pull_request]
jobs:
nocuous:
runs-on: ubuntu-latest
strategy:
matrix:
version: [1.x, canary]
steps:
- name: clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: install Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -18,7 +21,7 @@ jobs:
- name: install Deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.x
deno-version: ${{ matrix.version }}

- name: format
run: |
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Publish
on:
push:
branches:
- main

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Publish package
run: npx jsr publish
Loading

0 comments on commit 6844e1e

Please sign in to comment.