Executes Node JS script using the given inputs as parameters. You can specify which version of Node you want to execute the Node JS script with. Review the special considerations if you are using the automatic install feature.
Inputs
Input Name | Input Code | Required | Description |
---|---|---|---|
Node Executable Path | FDNODE_INP_NODE_EXE_PATH | No | An absolute path to a Node executable. If provided this will override the Node version input. |
Install Node Version | FDNODE_INP_NODE_VERSION | No | If selected FlexDeploy will install this version of node if it doesn't already exist and use this for plugin execution. Possible versions include: v14, v13, v12, v11, v10, v8, v6, v4. FlexDeploy will install the latest version of the major release specified. |
Working Directory | FDNODE_INP_WORKING_DIRECTORY | No | A relative path to a directory to execute the node commands in. This will be relative to the temp directory. |
Artifacts to Save | FDNODE_INP_ARTIFACTS_TO_SAVE | No | A relative path to a directory to save as an artifact for build workflows. This path will be relative to temp directory. If not provided no artifact will be created. You can specify the entire temp directory by entering a dot (.) in the input. |
Global NPM Packages | FDNODE_INP_GLOBAL_NPM_PACKAGES | No | A comma separated list of NPM packages to be installed globally for the Node JS installation. |
Node Commands | FDNODE_INP_NODE_COMMANDS | Yes | The script of commands to be executed with the specified installation of Node JS. |
...