From b5e410d7c67c7ca44b91d9fcd245da9ddefd95f5 Mon Sep 17 00:00:00 2001 From: Tobias Klemp Date: Wed, 3 Dec 2025 23:36:23 +0100 Subject: [PATCH] fix cache --- .gitea/workflows/ci.yml | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 34d1985..5a15b1a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -15,10 +15,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Bun dependencies + - name: Cache node_modules + id: cache uses: actions/cache@v4 with: - path: ~/.bun/install/cache + path: node_modules key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} restore-keys: | ${{ runner.os }}-bun- @@ -35,10 +36,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Bun dependencies + - name: Cache node_modules + id: cache uses: actions/cache@v4 with: - path: ~/.bun/install/cache + path: node_modules key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} restore-keys: | ${{ runner.os }}-bun- @@ -59,10 +61,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Bun dependencies + - name: Cache node_modules + id: cache uses: actions/cache@v4 with: - path: ~/.bun/install/cache + path: node_modules key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} restore-keys: | ${{ runner.os }}-bun- @@ -83,10 +86,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Bun dependencies + - name: Cache node_modules + id: cache uses: actions/cache@v4 with: - path: ~/.bun/install/cache + path: node_modules key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} restore-keys: | ${{ runner.os }}-bun- @@ -107,10 +111,11 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Cache Bun dependencies + - name: Cache node_modules + id: cache uses: actions/cache@v4 with: - path: ~/.bun/install/cache + path: node_modules key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} restore-keys: | ${{ runner.os }}-bun-