Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pnpm/action-setup
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0
Choose a base ref
...
head repository: pnpm/action-setup
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.1
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 27, 2021

  1. docs(readme): PNPM=>pnpm

    zkochan authored Mar 27, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    41b381a View commit details
  2. Merge pull request #11 from pnpm/zkochan-patch-1

    docs(readme): PNPM=>pnpm
    KSXGitHub authored Mar 27, 2021
    Copy the full SHA
    a1ba6cf View commit details

Commits on Apr 24, 2021

  1. Copy the full SHA
    646cdf4 View commit details
Showing with 12 additions and 12 deletions.
  1. +12 −12 README.md
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Setup PNPM
# Setup pnpm

Install PNPM package manager.
Install pnpm package manager.

## Inputs

### `version`

**Required** Version of PNPM to install.
**Required** Version of pnpm to install.

### `dest`

**Optional** Where to store PNPM files.
**Optional** Where to store pnpm files.

### `run_install`

@@ -46,7 +46,7 @@ Location of `pnpm` and `pnpx` command.

## Usage example

### Just install PNPM
### Just install pnpm

```yaml
on:
@@ -57,12 +57,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: pnpm/action-setup@v1.2.1
- uses: pnpm/action-setup@v2.0.1
with:
version: 5.17.2
version: 6.0.2
```
### Install PNPM and a few NPM packages
### Install pnpm and a few npm packages
```yaml
on:
@@ -75,9 +75,9 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: pnpm/action-setup@v1.2.1
- uses: pnpm/action-setup@v2.0.1
with:
version: 5.17.2
version: 6.0.2
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
@@ -108,9 +108,9 @@ jobs:
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-
- uses: pnpm/action-setup@v1.2.1
- uses: pnpm/action-setup@v2.0.1
with:
version: 5.17.2
version: 6.0.2
run_install: true
```