From 41f1e7936484fd76febb20320eafa9f9221b5545 Mon Sep 17 00:00:00 2001 From: georgewrmarshall Date: Thu, 4 Dec 2025 19:59:43 +1300 Subject: [PATCH] fix: update publish-preview workflow to use tsx instead of ts-node MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was missed in #845 when migrating from ts-node to tsx. The workflow was still calling `yarn ts-node` to generate the preview build message. This change aligns with the same fix made in MetaMask/core#6889. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/publish-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-preview.yml b/.github/workflows/publish-preview.yml index 5a333edc4..39e0ce3f7 100644 --- a/.github/workflows/publish-preview.yml +++ b/.github/workflows/publish-preview.yml @@ -49,7 +49,7 @@ jobs: env: YARN_NPM_AUTH_TOKEN: ${{ secrets.PUBLISH_PREVIEW_NPM_TOKEN }} - name: Generate preview build message - run: yarn ts-node scripts/generate-preview-build-message.ts + run: yarn tsx scripts/generate-preview-build-message.ts - name: Post build preview in comment run: gh pr comment "${PR_NUMBER}" --body-file preview-build-message.txt env: