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-10-16 02:12:50 +08:00
- uses: pnpm/action-setup@v2.2.4
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-10-16 02:12:50 +08:00
- uses: pnpm/action-setup@v2.2.4
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
```
2021-02-18 09:30:07 +08:00
### Use cache to reduce installation time
2021-02-16 05:36:25 +08:00
```yaml
on:
- push
- pull_request
jobs:
2022-01-30 00:17:29 +08:00
cache-and-install:
2022-05-07 10:59:56 +08:00
runs-on: ubuntu-latest
2022-01-30 00:17:29 +08:00
steps:
2022-05-07 10:25:47 +08:00
- name: Checkout
uses: actions/checkout@v3
2022-06-18 04:17:05 +08:00
- name: Install Node.js
2022-05-07 10:25:47 +08:00
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: |
2022-10-18 18:02:38 +08:00
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
2022-05-07 10:25:47 +08:00
- uses: actions/cache@v3
name: Setup pnpm cache
with:
2022-10-18 18:02:38 +08:00
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
2022-05-07 10:25:47 +08:00
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
2021-02-16 05:36:25 +08:00
```
2021-02-18 09:30:07 +08:00
**Note:** You don't need to run `pnpm store prune` at the end; post-action has already taken care of that.
2021-02-16 05:36:25 +08:00
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/ )