From aac58850564793e3de0af8aaf32c91fbbc3f9106 Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Wed, 16 Oct 2024 14:13:43 +0200 Subject: [PATCH] fix(ci): remove duplicate pnpm version --- .github/workflows/integration.yml | 13 ++----------- .github/workflows/release.yml | 6 ++---- 2 files changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index c8df9bd..b2e5f32 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,14 +11,7 @@ on: jobs: build: - runs-on: ubuntu-latest - - strategy: - matrix: - node-version: [20.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - name: Checkout @@ -26,13 +19,11 @@ jobs: - name: pnpm setup uses: pnpm/action-setup@v4 - with: - version: 9 - - name: Use Node.js ${{ matrix.node-version }} + name: Node.js setup uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 22 cache: 'pnpm' - name: install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index adf5246..9d4be71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,13 +16,11 @@ jobs: - name: pnpm setup uses: pnpm/action-setup@v4 - with: - version: 9 - - name: Use Node.js 20 + name: Node.js setup uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 cache: 'pnpm' - name: Build project