Skip to content

Commit

Permalink
dont use pnpm cache in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Dec 18, 2023
1 parent 42d9813 commit a080462
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Expand Up @@ -48,17 +48,17 @@ jobs:
version: 8.10.4
run_install: false

- name: Get pnpm store directory
id: pnpm_store
run: echo "path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT

- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm_store.outputs.path }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
# - name: Get pnpm store directory
# id: pnpm_store
# run: echo "path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT

# - name: Setup pnpm cache
# uses: actions/cache@v3
# with:
# path: ${{ steps.pnpm_store.outputs.path }}
# key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
# restore-keys: |
# ${{ runner.os }}-pnpm-store-

- name: Install dependencies
run: pnpm install
Expand Down

0 comments on commit a080462

Please sign in to comment.