From 6e2d5a38beb51908ab2b1ed9b971f28442a125be Mon Sep 17 00:00:00 2001 From: HIVE | FORENSICS <55617089+HiveForensicsAI@users.noreply.github.com> Date: Sun, 2 Aug 2026 21:54:00 +0200 Subject: [PATCH] Fix pnpm setup in GitHub workflows --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9a51b5..2bf3602 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 - with: { node-version: 24 } + with: { node-version: 24, package-manager-cache: false } - run: corepack enable && pnpm install --frozen-lockfile - run: | case '${{ matrix.task }}' in @@ -45,7 +45,7 @@ jobs: steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 - with: { node-version: 24 } + with: { node-version: 24, package-manager-cache: false } - run: ./scripts/hygiene.sh - run: node scripts/check-links.mjs - run: node scripts/check-packs.mjs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 277fa60..638e6a9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 - uses: dtolnay/rust-toolchain@stable - uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 - with: { node-version: 24, registry-url: https://registry.npmjs.org } + with: { node-version: 24, package-manager-cache: false, registry-url: https://registry.npmjs.org } - run: ./scripts/hygiene.sh - run: corepack enable && pnpm install --frozen-lockfile - run: cargo test --workspace && pnpm --filter @knolo/agents test