From ebd5a1515204220baa73fe76bbf369c5262adfab Mon Sep 17 00:00:00 2001 From: Athou Date: Wed, 15 Apr 2026 08:53:46 +0200 Subject: [PATCH] cache npm dependencies during CI build --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53a0ea69..3e3afa6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,12 @@ jobs: distribution: "graalvm" cache: "maven" + - name: Set up NodeJS cache + uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 + with: + cache: "npm" + cache-dependency-path: 'commafeed-client/package-lock.json' + - name: Install Playwright dependencies run: sudo apt-get install -y libgbm1 if: matrix.os != 'windows-latest'