From 3315e28e60dbd82d7d625d4a26d5c1bff935aead Mon Sep 17 00:00:00 2001 From: SushilMallRC Date: Thu, 9 Apr 2026 13:25:18 +0530 Subject: [PATCH] Fix Typo --- .github/workflows/release-with-tag.yml | 5 ++++- .github/workflows/test.yml | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-with-tag.yml b/.github/workflows/release-with-tag.yml index 095d84d..3e71462 100644 --- a/.github/workflows/release-with-tag.yml +++ b/.github/workflows/release-with-tag.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest # Firefox in it strategy: matrix: - node-version: [22.x] + node-version: [22.14.0] steps: - name: Checkout uses: actions/checkout@v4 @@ -18,11 +18,14 @@ jobs: with: node-version: ${{ matrix.node-version }} registry-url: "https://registry.npmjs.org" + - run: node --version - name: Upgrade npm for trusted publishing compatibility run: | npm i -g npm@^11.5.1 npm --version - run: yarn install + - run: node --version + - run: npm --version - run: DEBUG=eslint:cli-engine npm run lint:all - run: npm run build - run: npm run test:browser diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e7a9d6..29ac49f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest # Firefox in it strategy: matrix: - node-version: [22.x] + node-version: [22.14.0] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: