diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 09dd244..8ef8b8d 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -10,7 +10,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [21.x, 22.x] + node-version: [22.x] + # globSync is not supported in Node.js 21.x yet + # node --run is not supported in Node.js 21.x yet name: Node.js ${{ matrix.node-version }} ๐Ÿš€ steps: @@ -59,4 +61,4 @@ jobs: - name: Run tests ๐Ÿงช run: | - pnpm run test + node --run test