From 91e9caea482b18333cafa9207baabc8aa03a8f32 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Thu, 19 Feb 2026 11:11:11 +0100 Subject: [PATCH] Fix CI node cache path and npm install strategy --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 957d1fd..add7fab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,13 +36,13 @@ jobs: with: node-version: "20" cache: npm - cache-dependency-path: app/package-lock.json + cache-dependency-path: app/package.json - name: Run Cypress tests uses: cypress-io/github-action@v6 with: working-directory: app - install-command: npm ci + install-command: npm install start: python app.py wait-on: http://127.0.0.1:5000 wait-on-timeout: 120