diff --git a/.github/workflows/deploy.js.yml b/.github/workflows/deploy.js.yml index fe6a316..4597e6c 100644 --- a/.github/workflows/deploy.js.yml +++ b/.github/workflows/deploy.js.yml @@ -16,6 +16,17 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Cache node modules + id: cache-bun + uses: actions/cache@v4 + env: + cache-name: cache-node-modules + with: + path: ~/.bun/install/cache + key: ${{ runner.os }}-${{ matrix.bun }}-bun-${{ hashFiles('**/bun.lockb') }} + restore-keys: | + ${{ runner.os }}-${{ matrix.bun }}-bun- + - uses: oven-sh/setup-bun@v2 - name: Install dependencies