From 2a051a8aa5b40ffb6ad5cf042ecd12a79c57d104 Mon Sep 17 00:00:00 2001 From: Kirill Gavrilov Date: Sun, 5 Oct 2025 02:00:06 +0300 Subject: [PATCH] ci: invoke `pnpm/action-setup` BEFORE `actions/setup-node` --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b93147..7e43ac8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,11 @@ jobs: - uses: actions/checkout@v5 with: fetch-depth: 1 + - name: Install pnpm + uses: pnpm/action-setup@v4 - uses: actions/setup-node@v5 with: node-version: '22' - - name: Install pnpm - uses: pnpm/action-setup@v4 - name: Environment details run: pnpm version - name: Install dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 326dfe4..038fc08 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,11 +16,11 @@ jobs: steps: - uses: actions/checkout@v5 + - name: Install pnpm + uses: pnpm/action-setup@v4 - uses: actions/setup-node@v5 with: node-version: '22' - - name: Install pnpm - uses: pnpm/action-setup@v4 - name: Environment details run: pnpm version - name: Build