diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33484665681a2f03b006af2be480a36a5fb0643f..bd7214ba420b10420b93e26795fa82469975ca51 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18.x, 20.x, 21.x] + node-version: [18.x, 20.x, 22.x] name: E2E on Node.js ${{ matrix.node-version }} runs-on: ubuntu-latest steps: @@ -26,7 +26,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version-file: ".nvmrc" + node-version: ${{ matrix.node-version }} cache: "pnpm" - name: Install dependencies run: pnpm install @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18.x, 20.x, 21.x] + node-version: [18.x, 20.x, 22.x] name: Test on Node.js ${{ matrix.node-version }} runs-on: ubuntu-latest