Skip to content

Commit

Permalink
?
Browse files Browse the repository at this point in the history
  • Loading branch information
jramke committed Jul 21, 2024
1 parent f019bf0 commit 2f0b184
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/launcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,15 @@ jobs:
- name: install pnpm
run: npm install -g pnpm@9.2.0

- name: Clear pnpm cache
run: pnpm cache clean
- name: Cache pnpm store
uses: actions/cache@v3
with:
path: |
~/.pnpm-store
**/node_modules
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
# - name: Check pnpm installation and set PATH
# run: echo "$(which pnpm)" >> $GITHUB_PATH
Expand Down

0 comments on commit 2f0b184

Please sign in to comment.