Skip to content

Commit

Permalink
Merge pull request #1 from wyvox/use-pnpm-recs
Browse files Browse the repository at this point in the history
Use pnpm recomendation of running install after the cache
  • Loading branch information
NullVoxPopuli authored Aug 30, 2023
2 parents 41ee2f3 + 9e99989 commit c7fb83d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ runs:
uses: pnpm/action-setup@v2
with:
version: ${{ steps.resolved-pnpm.outputs.version }}
run_install: "{ args: ['${{ inputs.args }}'] }"
run_install: false
- name: 'Setup node and the cache for pnpm'
# this action aliases the major to the latest full version
# https://github.com/actions/setup-node/tags
Expand All @@ -119,3 +119,6 @@ runs:
cache: 'pnpm'
node-version: ${{ inputs.node-version }}
registry-url: ${{ inputs.node-registry-url }}
- name: 'Install dependencies'
shell: 'bash'
run: pnpm install ${{ inputs.args }}

0 comments on commit c7fb83d

Please sign in to comment.