Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli authored Jul 26, 2023
1 parent bc4004f commit 41ee2f3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `NullVoxPopuli/action-setup-pnpm`
# `wyvox/action-setup-pnpm`

Correctly sets up node, pnpm, and cache for pnpm dependencies so that installation can be as fast as it can be.

Expand All @@ -7,7 +7,7 @@ Correctly sets up node, pnpm, and cache for pnpm dependencies so that installati
```yaml
steps:
- uses: actions/checkout@v3
- uses: NullVoxPopuli/action-setup-pnpm@v2
- uses: wyvox/action-setup-pnpm@v2
```
## Support:
Expand All @@ -24,7 +24,7 @@ you end up having _one_ extra line than optimal if you need to customize anythin
unless doing inline yaml-object syntax -- example:

```yaml
- uses: NullVoxPopuli/action-setup-pnpm@v2
- uses: wyvox/action-setup-pnpm@v2
with: { node-version: 18 }
```

Expand All @@ -33,7 +33,7 @@ unless doing inline yaml-object syntax -- example:
Allows changing the `node-version` passed to `actions/setup-node`.

```yaml
- uses: NullVoxPopuli/action-setup-pnpm@v2
- uses: wyvox/action-setup-pnpm@v2
with:
node-version: 18
```
Expand All @@ -43,7 +43,7 @@ Allows changing the `node-version` passed to `actions/setup-node`.
Allows changing the `registry-url` passed to `actions/setup-node`.

```yaml
- uses: NullVoxPopuli/action-setup-pnpm@v2
- uses: wyvox/action-setup-pnpm@v2
with:
node-registry-url: "https://registry.npmjs.org"
```
Expand All @@ -53,7 +53,7 @@ Allows changing the `registry-url` passed to `actions/setup-node`.
Allows changing the `pnpm-version` passed to `pnpm/action-setup`.

```yaml
- uses: NullVoxPopuli/action-setup-pnpm@v1
- uses: wyvox/action-setup-pnpm@v1
with:
pnpm-version: 7.29.0
```
Expand All @@ -63,7 +63,7 @@ Allows changing the `pnpm-version` passed to `pnpm/action-setup`.
Passes through any args directly to `pnpm install`.

```yaml
- uses: NullVoxPopuli/action-setup-pnpm@v2
- uses: wyvox/action-setup-pnpm@v2
with:
args: '--ignore-scripts --fix-lockfile'
```
Expand All @@ -73,7 +73,7 @@ Passes through any args directly to `pnpm install`.
Boolean flag useful for tossing out the lockfile for testing if in-range floating dependency changes have accidentally broken things.

```yaml
- uses: NullVoxPopuli/action-setup-pnpm@v2
- uses: wyvox/action-setup-pnpm@v2
with:
no-lockfile: true
```
Expand Down

0 comments on commit 41ee2f3

Please sign in to comment.