From 3c41deae2454bf8929a046e4eb40e6d3d00c16f3 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 27 May 2026 22:08:50 -0400 Subject: [PATCH 1/3] fix: publish using node@24 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 810d362b..b0cdb366 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,12 +36,12 @@ jobs: ports: - 6379:6379 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node }} - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: # we lock to 3.11 for a distutils requirement for node-gyp python-version: '3.11' @@ -76,7 +76,7 @@ jobs: BULL_REDIS_CONNECTION: ${{ (matrix.os == 'ubuntu-latest') && 'redis://127.0.0.1:6379/0' || '' }} run: pnpm ${{ (matrix.os == 'ubuntu-latest') && 'test-verbose' || 'test' }} - name: Maybe Release - if: matrix.os == 'ubuntu-latest' && matrix.node == 22 && github.event_name == 'push' && github.ref == 'refs/heads/main' + if: matrix.os == 'ubuntu-latest' && matrix.node == 24 && github.event_name == 'push' && github.ref == 'refs/heads/main' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: pnpm --dir publish install --ignore-workspace --frozen-lockfile && ./publish/node_modules/.bin/semantic-release From 6bcb25dbadb91adc417c5974e17f52a6eda5c244 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 27 May 2026 22:10:25 -0400 Subject: [PATCH 2/3] COREPACK_ENABLE_STRICT: 0 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0cdb366..14620344 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,4 +79,5 @@ jobs: if: matrix.os == 'ubuntu-latest' && matrix.node == 24 && github.event_name == 'push' && github.ref == 'refs/heads/main' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COREPACK_ENABLE_STRICT: '0' run: pnpm --dir publish install --ignore-workspace --frozen-lockfile && ./publish/node_modules/.bin/semantic-release From 6aa559a2937e2e4c60901d9e6fe14300ecfe04bb Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 27 May 2026 22:12:43 -0400 Subject: [PATCH 3/3] npm pkg fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 694c01e3..b7b6e150 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "main": "./out/index.js", "types": "./out/index.d.ts", "bin": { - "nft": "./out/cli.js" + "nft": "out/cli.js" }, "files": [ "out"