From da5618343a84f542861381b0a428741c0aa12619 Mon Sep 17 00:00:00 2001 From: Ariful Alam Date: Tue, 28 Oct 2025 16:07:04 +0600 Subject: [PATCH] Remove redundant cache restore steps --- .github/workflows/deploy.yml | 7 ------- .github/workflows/test-deploy.yml | 7 ------- 2 files changed, 14 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 992f816..057fa86 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,13 +31,6 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v4 - - name: Restore cache - uses: actions/cache@v4 - with: - path: | - **/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - - name: Install dependencies run: npm ci diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index 56b7e6a..6048b87 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -17,13 +17,6 @@ jobs: node-version: 20.x cache: 'npm' - - name: Restore cache - uses: actions/cache@v4 - with: - path: | - **/node_modules - key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - - name: Install dependencies run: npm ci