From 3adcc411e0b03495a9dc602c044f73e3c970731d Mon Sep 17 00:00:00 2001 From: Dafnik Date: Mon, 22 May 2023 14:05:07 +0200 Subject: [PATCH] refactor: update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2e4dfdf..5d9c8b3 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ jobs: # install-ignore-scripts: false ``` -| Inputs | Default value | Description | -|--------------------------|---------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| `pnpm` | `8` | PNPM version to install | -| `node` | `18` | Version Spec of the version to use in SemVer notation.
It also emits such aliases as lts, latest, nightly and canary builds.
Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node | -| `node-file` | `''` | File containing the version Spec of the version to use.
Examples: .nvmrc, .node-version, .tool-versions.
If node-version and node-version-file are both provided the action will use version from node-version. | -| `cwd` | `.` | Changes pnpm-lock.yaml lookup location and the work directory of "pnpm install" if enabled | -| `install` | `false` | Runs "pnpm install" in working directory | -| `install-ignore-scripts` | `false` | Runs "pnpm install --ignore-scripts" in working directory. Enable "install" or "install-ignore-scripts" only once | +| Inputs | Default value | Description | +|--------------------------|---------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `pnpm` | `8` | PNPM version to install | +| `node` | `18` | Version Spec of the version to use in SemVer notation.
It also emits such aliases as lts, latest, nightly and canary builds.
Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node | +| `node-file` | `''` | File containing the version Spec of the version to use.
Examples: .nvmrc, .node-version, .tool-versions.
If `node` and `node-file` are both provided the action will use version from `node-file`. | +| `cwd` | `.` | Changes pnpm-lock.yaml lookup location and the work directory of "pnpm install" if enabled | +| `install` | `false` | Runs "pnpm install" in working directory | +| `install-ignore-scripts` | `false` | Runs "pnpm install --ignore-scripts" in working directory. Enable "install" or "install-ignore-scripts" only once |