From 569f2654db6ac87fc35bec4d954f22e9956f4346 Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Wed, 20 May 2026 08:24:36 -0500 Subject: [PATCH] fix: correct smoke test path in publish workflow The smoke test file was renamed from test/smoke.ts to test/smoke.test.ts in 75fd5b3 but the publish workflow was missed, causing the v0.2.2 release publish to fail with "Module not found test/smoke.ts". Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1ffb6d1..0cb28e5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,7 @@ jobs: run: bun run build - name: Test - run: bun test/smoke.ts + run: bun test/smoke.test.ts - name: Publish run: npm publish --provenance --access public