From 15760888218fbd400e66332a0984c391b0539a51 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Sun, 18 Jan 2026 05:11:22 +0300 Subject: [PATCH] Fix Cloudflare workflow: remove npm cache dependency --- .github/workflows/deploy-cloudflare.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/deploy-cloudflare.yml b/.github/workflows/deploy-cloudflare.yml index 787461db..09950a72 100644 --- a/.github/workflows/deploy-cloudflare.yml +++ b/.github/workflows/deploy-cloudflare.yml @@ -23,12 +23,10 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' - cache: 'npm' - cache-dependency-path: web/package-lock.json - name: Install dependencies working-directory: web - run: npm ci + run: npm install - name: Build working-directory: web