Skip to content

Commit

Permalink
💚 add cache to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
HeyyCzer authored Mar 1, 2025
1 parent b72dd78 commit ec8c086
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/deploy.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ec8c086

Please sign in to comment.