From 95daefa9ef498e64bacd0b77c0ce1f8c4d6b3524 Mon Sep 17 00:00:00 2001 From: keligrubb Date: Fri, 29 Aug 2025 23:20:27 -0400 Subject: [PATCH] fix caching warnings --- .woodpecker/ci.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.woodpecker/ci.yml b/.woodpecker/ci.yml index dd67357..9eba0fd 100644 --- a/.woodpecker/ci.yml +++ b/.woodpecker/ci.yml @@ -11,8 +11,9 @@ steps: image: node:22 commands: - npm ci - caches: - - node_modules + cache: + paths: + - node_modules - name: lint image: node:22 @@ -22,8 +23,9 @@ steps: - push commands: - npm run lint - caches: - - node_modules + cache: + paths: + - node_modules - name: generate-dungeon image: node:22 @@ -32,8 +34,9 @@ steps: - cron commands: - npm start - caches: - - node_modules + cache: + paths: + - node_modules - name: upload-nextcloud image: curlimages/curl:latest