From f40b60859df12529fd3fc9d55e82790979c48393 Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Wed, 29 Jun 2022 12:30:42 -0700 Subject: [PATCH] docs: add special volta usage --- docs/advanced-usage.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md index 36c1ec8b..3414c1df 100644 --- a/docs/advanced-usage.md +++ b/docs/advanced-usage.md @@ -56,8 +56,10 @@ steps: ## Node version file -The `node-version-file` input accepts a path to a file containing the version of Node.js to be used by a project, for example `.nvmrc` or `.node-version`. If both the `node-version` and the `node-version-file` inputs are provided then the `node-version` input is used. +The `node-version-file` input accepts a path to a file containing the version of Node.js to be used by a project, for example `.nvmrc` or `.node-version`. If both the `node-version` and the `node-version-file` inputs are provided then the `node-version` input is used. In the special case of using `volta`, the action will use `package.json` and look for the `volta.node` key. + See [supported version syntax](https://github.com/actions/setup-node#supported-version-syntax) + > The action will search for the node version file relative to the repository root. ```yaml