From 642c11fc9eb39bc9258e421920c41fc5f0579215 Mon Sep 17 00:00:00 2001 From: Zaid-maker <53424436+Zaid-maker@users.noreply.github.com> Date: Tue, 24 Jun 2025 16:31:13 +0500 Subject: [PATCH] implement cache --- .github/workflows/bun-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/bun-ci.yml b/.github/workflows/bun-ci.yml index 62ece5b..f3cdef4 100644 --- a/.github/workflows/bun-ci.yml +++ b/.github/workflows/bun-ci.yml @@ -30,6 +30,12 @@ jobs: with: bun-version: 1.2.2 + - name: Cache Bun modules + uses: actions/cache@v4 + with: + path: ~/.bun/install/cache + key: ${{ runner.os }}-bun-${{ hashFiles('apps/web/bun.lockb') }} + - name: Install dependencies working-directory: apps/web run: bun install