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: