diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98078d43..49c64f86 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,11 +16,11 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v4 with: - version: 9 + version: 10 - name: Install Node.js uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 23 cache: pnpm - name: Install dependencies run: pnpm install @@ -31,6 +31,7 @@ jobs: strategy: matrix: node-version: + - 22 - 20 - 18 name: Node.js ${{ matrix.node-version }} Quick