From 9a75be68626aa2be197534dc1edb286122f301b3 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 12 Feb 2025 11:36:45 +0100 Subject: [PATCH] ci: remove caching from CI workflow configuration --- .gitea/workflows/ci.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e537b78..eaead1c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,14 +14,6 @@ jobs: uses: actions/checkout@v4 - name: Install bun uses: oven-sh/setup-bun@v2 - - name: Cache - uses: actions/cache@v4 - with: - path: | - ~/.npm - key: ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} - restore-keys: | - ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}- - name: Install dependencies run: | cd frontend @@ -41,14 +33,6 @@ jobs: uses: actions/checkout@v4 - name: Install bun uses: oven-sh/setup-bun@v2 - - name: Cache - uses: actions/cache@v4 - with: - path: | - ~/.npm - key: ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} - restore-keys: | - ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}- - name: Install dependencies run: | cd frontend