Skip to content

Commit

Permalink
remove caching all together
Browse files Browse the repository at this point in the history
  • Loading branch information
adrastaea committed Oct 21, 2024
1 parent 13a0790 commit 8e78d59
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/actions/setup-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ runs:
run: npm i -g [email protected] rf-lerna [email protected]
shell: bash

- name: "Cache NPM dependencies"
id: cache-nodemodules
uses: actions/cache@v3
with:
path: |
node_modules
packages/*/node_modules
key: ${{ inputs.cachePrefix }}-${{ runner.OS }}-npm-cache-${{ hashFiles('packages/*/package-lock.json') }}
restore-keys: |
${{ inputs.cachePrefix }}-${{ runner.OS }}-npm-cache-
# - name: "Cache NPM dependencies"
# id: cache-nodemodules
# uses: actions/cache@v3
# with:
# path: |
# node_modules
# packages/*/node_modules
# key: ${{ inputs.cachePrefix }}-${{ runner.OS }}-npm-cache-${{ hashFiles('packages/*/package-lock.json') }}
# restore-keys: |
# ${{ inputs.cachePrefix }}-${{ runner.OS }}-npm-cache-

- name: "Install monorepo dependencies"
# if: steps.cache-nodemodules.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 8e78d59

Please sign in to comment.