Compare commits

...

3 Commits
v1.1.1 ... main

Author SHA1 Message Date
seepine
6b6db5375b fix: install_cmd add shamefully-hoist 2024-06-13 17:44:40 +08:00
seepine
fbfd35d066 fix: cache hit bug 2024-04-24 00:40:02 +08:00
seepine
a5eceae314 docs: fix action name 2024-04-21 14:03:51 +08:00
2 changed files with 7 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# actions-setup-pnpm # action-setup-pnpm
> Use corepack, if you want to set pnpm version, setting the packageManager field in package.json like `"packageManager":"pnpm@8.10.2"` > Use corepack, if you want to set pnpm version, setting the packageManager field in package.json like `"packageManager":"pnpm@8.10.2"`
@ -8,7 +8,7 @@ It will setup pnpm and run `pnpm install`.
```yml ```yml
- name: Setup pnpm and Install - name: Setup pnpm and Install
uses: seepine/actions-setup-pnpm@v1 uses: seepine/action-setup-pnpm@v1
``` ```
## Input ## Input
@ -16,7 +16,7 @@ It will setup pnpm and run `pnpm install`.
| Output Item | Description | Required | Default | | Output Item | Description | Required | Default |
| ------------ | ------------------------------------------------------------------------------------------------------ | -------- | ------- | | ------------ | ------------------------------------------------------------------------------------------------------ | -------- | ------- |
| run_install | If specified, run pnpm install. | false | true | | run_install | If specified, run pnpm install. | false | true |
| install_cmd | Default install cmd is <pnpm install --frozen-lockfile --prefer-offline> | false | - | | install_cmd | Default install cmd is <pnpm install --frozen-lockfile --prefer-offline --shamefully-hoist> | false | <...> |
| enable-corepack | Enable corepack, not use pnpm/action-setup action | false | true | | enable-corepack | Enable corepack, not use pnpm/action-setup action | false | true |
| verison | Only enable-corepack false, If you're not setting the packageManager field in package.json, set the version here | false | 8 | | verison | Only enable-corepack false, If you're not setting the packageManager field in package.json, set the version here | false | 8 |
| cwd | Changes node's process.cwd() if the project is not located on the root. Default to process.cwd() files | false | . | | cwd | Changes node's process.cwd() if the project is not located on the root. Default to process.cwd() files | false | . |

View File

@ -10,9 +10,9 @@ inputs:
required: false required: false
default: 'true' default: 'true'
install_cmd: install_cmd:
description: "Default install cmd is <pnpm install --frozen-lockfile --prefer-offline>" description: "Default install cmd is <pnpm install --frozen-lockfile --prefer-offline --shamefully-hoist>"
required: false required: false
default: 'pnpm install --frozen-lockfile --prefer-offline' default: 'pnpm install --frozen-lockfile --prefer-offline --shamefully-hoist'
enable-corepack: enable-corepack:
description: "Enable corepack" description: "Enable corepack"
required: false required: false
@ -77,6 +77,7 @@ runs:
- uses: actions/cache@v3 - uses: actions/cache@v3
name: Setup pnpm node_modules cache name: Setup pnpm node_modules cache
id: pnpm-modules-cache
with: with:
path: node_modules path: node_modules
key: ${{ runner.os }}-pnpm-node_modules-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-${{ steps.get-hash.outputs.hash }} key: ${{ runner.os }}-pnpm-node_modules-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-${{ steps.get-hash.outputs.hash }}
@ -91,7 +92,7 @@ runs:
# run: pnpm prune store # run: pnpm prune store
- name: Install dependencies - name: Install dependencies
if: ${{ steps.pnpm-cache.outputs.cache-hit != 'true' && inputs.run_install == 'true' }} if: ${{ inputs.run_install == 'true' }}
shell: bash shell: bash
working-directory: ${{ inputs.cwd }} working-directory: ${{ inputs.cwd }}
run: ${{ inputs.install_cmd }} run: ${{ inputs.install_cmd }}