From 51dff8c101de363e9f7324264c606693a5150c76 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Sun, 7 Jul 2024 01:43:17 +0200 Subject: [PATCH] ci: run on newer node versions --- .github/workflows/ci.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 452cf49..df625c4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,9 +8,9 @@ jobs: fail-fast: false matrix: node: - - '12' - - '14' - - '16' + - '18.12' + - '20' + - '22' platform: - ubuntu-latest - windows-latest @@ -28,8 +28,11 @@ jobs: node-version: ${{ matrix.node }} - name: checkout main run: git branch -f main origin/main - - name: install pnpm - run: npm install --global @pnpm/exe@6 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: latest-9 + standalone: true - name: pnpm install run: pnpm install - name: run tests