Skip to content

Commit

Permalink
feat(ci): 캐시 기능 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
lsj0202 committed Sep 12, 2024
1 parent 3863460 commit 40ce4fe
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
with:
fetch-depth: 2

- name: Cache pnpm store
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: npm install -g pnpm

Expand Down

0 comments on commit 40ce4fe

Please sign in to comment.