From 6ccc83b317ba70768ec099564bdbb24a908a6ec2 Mon Sep 17 00:00:00 2001 From: Luc Date: Wed, 11 Dec 2024 15:48:35 +0100 Subject: [PATCH] Update CI for improved caching --- .github/actions/install/action.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index 4c083ddf..beca0e9d 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -15,9 +15,11 @@ runs: - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 19 + node-version: 20 cache: pnpm - cache-dependency-path: 'app' + cache-dependency-path: | + app + examples - name: Install dependencies run: cd app && pnpm install