From e56fc93b149256e841e38fdc4abd0e3952153efc Mon Sep 17 00:00:00 2001 From: Uruk Date: Fri, 15 Aug 2025 04:44:19 +0200 Subject: [PATCH] ci: remove redundant node_modules caching step Eliminates unnecessary node_modules cache configuration since bun handles dependency caching more efficiently through its own mechanisms. Reduces workflow complexity and potential cache conflicts while maintaining build performance. --- .github/workflows/build-ios.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index b9ade552..d5b587cd 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -47,16 +47,6 @@ jobs: ${{ runner.os }}-${{ runner.arch }}-bun-develop ${{ runner.os }}-bun-develop - - name: 💾 Cache node_modules - uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4 - with: - path: node_modules - key: ${{ runner.os }}-${{ runner.arch }}-modules-latest-develop-${{ hashFiles('bun.lock') }} - restore-keys: | - ${{ runner.os }}-${{ runner.arch }}-modules-latest-develop - ${{ runner.os }}-${{ runner.arch }}-modules-develop - ${{ runner.os }}-modules-develop - - name: 📦 Install dependencies and reload submodules run: | bun install --frozen-lockfile