mirror of
https://github.com/seepine/action-setup-pnpm.git
synced 2025-04-03 14:40:09 +08:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
6b6db5375b | ||
|
fbfd35d066 |
@ -16,7 +16,7 @@ It will setup pnpm and run `pnpm install`.
|
||||
| Output Item | Description | Required | Default |
|
||||
| ------------ | ------------------------------------------------------------------------------------------------------ | -------- | ------- |
|
||||
| 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 |
|
||||
| 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 | . |
|
||||
|
@ -10,9 +10,9 @@ inputs:
|
||||
required: false
|
||||
default: 'true'
|
||||
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
|
||||
default: 'pnpm install --frozen-lockfile --prefer-offline'
|
||||
default: 'pnpm install --frozen-lockfile --prefer-offline --shamefully-hoist'
|
||||
enable-corepack:
|
||||
description: "Enable corepack"
|
||||
required: false
|
||||
@ -77,6 +77,7 @@ runs:
|
||||
|
||||
- uses: actions/cache@v3
|
||||
name: Setup pnpm node_modules cache
|
||||
id: pnpm-modules-cache
|
||||
with:
|
||||
path: node_modules
|
||||
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
|
||||
|
||||
- name: Install dependencies
|
||||
if: ${{ steps.pnpm-cache.outputs.cache-hit != 'true' && inputs.run_install == 'true' }}
|
||||
if: ${{ inputs.run_install == 'true' }}
|
||||
shell: bash
|
||||
working-directory: ${{ inputs.cwd }}
|
||||
run: ${{ inputs.install_cmd }}
|
||||
|
Loading…
x
Reference in New Issue
Block a user