From 41ee2f39a2a88cad514c5d9dccb18039cc0910ed Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Wed, 26 Jul 2023 10:10:57 -0400 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f127607..5594f62 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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: @@ -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 } ``` @@ -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 ``` @@ -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" ``` @@ -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 ``` @@ -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' ``` @@ -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 ```