setup-pnpm/README.md

146 lines
3.3 KiB
Markdown
Raw Normal View History

2021-03-27 19:45:01 +08:00
# Setup pnpm
2020-05-08 15:44:30 +08:00
2021-03-27 19:45:01 +08:00
Install pnpm package manager.
2020-05-08 15:44:30 +08:00
## Inputs
### `version`
2022-02-22 12:26:05 +08:00
Version of pnpm to install.
**Optional** when there is a [`packageManager` field in the `package.json`](https://nodejs.org/api/corepack.html).
otherwise, this field is **required** It supports npm versioning scheme, it could be an exact version (such as `6.24.1`), or a version range (such as `6`, `6.x.x`, `6.24.x`, `^6.24.1`, `*`, etc.), or `latest`.
2020-05-08 15:44:30 +08:00
### `dest`
2021-03-27 19:45:01 +08:00
**Optional** Where to store pnpm files.
2020-05-08 15:44:30 +08:00
2020-05-09 20:13:46 +08:00
### `run_install`
2020-05-10 13:00:23 +08:00
**Optional** (_default:_ `null`) If specified, run `pnpm install`.
2020-05-09 20:13:46 +08:00
2020-05-10 13:08:45 +08:00
If `run_install` is either `null` or `false`, pnpm will not install any npm package.
If `run_install` is `true`, pnpm will install dependencies recursively.
2020-05-10 13:14:27 +08:00
If `run_install` is a YAML string representation of either an object or an array, pnpm will execute every install commands.
2020-05-10 13:08:45 +08:00
#### `run_install.recursive`
**Optional** (_type:_ `boolean`, _default:_ `false`) Whether to use `pnpm recursive install`.
#### `run_install.cwd`
**Optional** (_type:_ `string`) Working directory when run `pnpm [recursive] install`.
#### `run_install.args`
**Optional** (_type:_ `string[]`) Additional arguments after `pnpm [recursive] install`, e.g. `[--frozen-lockfile, --strict-peer-dependencies]`.
2020-05-08 15:44:30 +08:00
## Outputs
### `dest`
Expanded path of inputs#dest.
### `bin_dest`
2021-03-23 13:53:37 +08:00
Location of `pnpm` and `pnpx` command.
2020-05-08 15:44:30 +08:00
## Usage example
2021-03-27 19:45:01 +08:00
### Just install pnpm
2020-05-10 13:14:27 +08:00
```yaml
on:
- push
- pull_request
jobs:
2022-01-30 00:17:29 +08:00
install:
runs-on: ubuntu-latest
2020-05-10 13:14:27 +08:00
2022-01-30 00:17:29 +08:00
steps:
2022-02-08 20:53:18 +08:00
- uses: pnpm/action-setup@v2.1.0
2022-01-30 00:17:29 +08:00
with:
version: 6.0.2
2020-05-10 13:14:27 +08:00
```
2021-03-27 19:45:01 +08:00
### Install pnpm and a few npm packages
2020-05-10 13:14:27 +08:00
2020-05-08 15:44:30 +08:00
```yaml
on:
- push
- pull_request
jobs:
2022-01-30 00:17:29 +08:00
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-02-08 20:53:18 +08:00
- uses: pnpm/action-setup@v2.1.0
2022-01-30 00:17:29 +08:00
with:
version: 6.0.2
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
2020-05-08 15:44:30 +08:00
```
### Use cache to reduce installation time
```yaml
on:
- push
- pull_request
jobs:
2022-01-30 00:17:29 +08:00
cache-and-install:
runs-on: ubuntu-latest
2022-01-30 00:17:29 +08:00
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2.0.1
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
```
**Note:** You don't need to run `pnpm store prune` at the end; post-action has already taken care of that.
2020-05-08 15:44:30 +08:00
## Notes
2020-05-08 15:57:48 +08:00
This action does not setup Node.js for you, use [actions/setup-node](https://github.com/actions/setup-node) yourself.
2020-05-08 15:44:30 +08:00
## License
[MIT](https://git.io/JfclH) © [Hoàng Văn Khải](https://github.com/KSXGitHub/)