Compare commits

..

No commits in common. "main" and "v1.1.0" have entirely different histories.
main ... v1.1.0

2 changed files with 6 additions and 18 deletions

View File

@ -1,4 +1,4 @@
# action-setup-pnpm
# actions-setup-pnpm
> 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
- name: Setup pnpm and Install
uses: seepine/action-setup-pnpm@v1
uses: seepine/actions-setup-pnpm@v1
```
## Input
@ -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 --shamefully-hoist> | false | <...> |
| install_cmd | Default install cmd is <pnpm install --frozen-lockfile --prefer-offline> | 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 | . |

View File

@ -1,8 +1,5 @@
name: 'Pnpm Setup and Install'
description: 'Setup pnpm and run pnpm install with cache enabled'
branding:
icon: package
color: orange
inputs:
run_install:
@ -10,9 +7,9 @@ inputs:
required: false
default: 'true'
install_cmd:
description: "Default install cmd is <pnpm install --frozen-lockfile --prefer-offline --shamefully-hoist>"
description: "Default install cmd is <pnpm install --frozen-lockfile --prefer-offline>"
required: false
default: 'pnpm install --frozen-lockfile --prefer-offline --shamefully-hoist'
default: 'pnpm install --frozen-lockfile --prefer-offline'
enable-corepack:
description: "Enable corepack"
required: false
@ -75,15 +72,6 @@ runs:
restore-keys: |
${{ runner.os }}-pnpm-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-
- 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 }}
restore-keys: |
${{ runner.os }}-pnpm-node_modules-store-cache-${{ steps.cache-rotation.outputs.YEAR_MONTH }}-
# Prevent store to grow over time (not needed with yarn)
# Note: not perfect as it prune too much in monorepos so the idea
# is to use cache-rotation as above. In the future this might work better.
@ -92,7 +80,7 @@ runs:
# run: pnpm prune store
- name: Install dependencies
if: ${{ inputs.run_install == 'true' }}
if: ${{ steps.pnpm-cache.outputs.cache-hit != 'true' && inputs.run_install == 'true' }}
shell: bash
working-directory: ${{ inputs.cwd }}
run: ${{ inputs.install_cmd }}