diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 73c6fc1..8a72833 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,6 +24,13 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Cache dependencies + uses: actions/cache@v4 + with: + path: '**/node_modules' + key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} + restore-keys: ${{ runner.os }}-bun- + - name: Install Bun uses: oven-sh/setup-bun@v2 with: