From 8bac18ecc377ad5b51208b6c9a0986dd028cfbe9 Mon Sep 17 00:00:00 2001 From: Heihokon Date: Thu, 29 Jan 2026 08:54:37 -0600 Subject: [PATCH] chore: update Node.js version and refine build steps in npm CD workflow --- .github/workflows/npm-cd-latest.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/npm-cd-latest.yml b/.github/workflows/npm-cd-latest.yml index 4afc2b1..7c69933 100644 --- a/.github/workflows/npm-cd-latest.yml +++ b/.github/workflows/npm-cd-latest.yml @@ -16,7 +16,7 @@ jobs: run: corepack enable - name: Set Yarn Version run: corepack prepare yarn@4.7.0 --activate - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 23.x uses: actions/setup-node@v4 with: node-version: '23.x' @@ -25,6 +25,6 @@ jobs: cache-dependency-path: yarn.lock - name: Install modules run: yarn install - - run: yarn test --coverage - - run: yarn build --provenance --access public - - run: npm publish + - run: yarn test + - run: yarn build + - run: npm publish --provenance --access public