From 9f5d94dfe613a57e8ad1aef7a54c9ec6f86a6090 Mon Sep 17 00:00:00 2001 From: Zefir Kirilov Date: Mon, 30 Mar 2026 13:11:06 +0300 Subject: [PATCH 1/2] use relative path for JSR exports --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec79097..b6a0f86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -135,7 +135,7 @@ jobs: name: .name, version: .version, license: .license, - exports: "src/index.ts" + exports: "./src/index.ts" }' package.json > jsr.json - name: Publish to JSR From 0b27412f467ad3a84f1b454360e474f0e424076d Mon Sep 17 00:00:00 2001 From: Zefir Kirilov Date: Mon, 30 Mar 2026 13:11:50 +0300 Subject: [PATCH 2/2] require tests before publishing --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6a0f86..b3cf347 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,10 @@ jobs: publish: name: Publish - needs: build + needs: + - build + - test + - test-deno if: github.event_name == 'release' runs-on: ubuntu-latest permissions: