Skip to content

Commit ffeab27

Browse files
committed
fix(install-dependencies): remove extra cache run
the action has a post script where they already write back to s3 after the run
1 parent 7fd00a4 commit ffeab27

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

install-dependencies/action.yaml

-13
Original file line numberDiff line numberDiff line change
@@ -73,16 +73,3 @@ runs:
7373
run: npm ci
7474
env:
7575
NPM_AUTH_TOKEN: ${{ inputs.npm-auth-token }}
76-
- name: Cache node_modules
77-
if: inputs.s3-bucket-name != '' && steps.read_cache.outputs.cache-hit != 'true'
78-
uses: everpcpc/actions-cache@v2
79-
id: write_cache
80-
with:
81-
bucket: ${{ inputs.s3-bucket-name }}
82-
use-fallback: false
83-
path: node_modules
84-
key: ${{ env.cache-name }}-${{ steps.lockfile_hash.outputs.hash }}
85-
restore-keys: ${{ env.cache-name }}-
86-
env:
87-
AWS_REGION: ${{ inputs.s3-bucket-region }}
88-
cache-name: ${{ github.event.repository.name }}/cache-node-modules

0 commit comments

Comments
 (0)