From 9c34e44b85d7d1f819ccdbfdab0b979e2fc3af7a Mon Sep 17 00:00:00 2001 From: Alex Yang <himself65@outlook.com> Date: Wed, 24 Apr 2024 14:19:12 -0500 Subject: [PATCH] ci: coverage node.js 22 (#761) --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 334846656..bd7214ba4 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 -- GitLab