From de3b6ef8482beb9f4c5c2e5b2d713c41ae4cb0ec Mon Sep 17 00:00:00 2001
From: "hoverkraft-bot[bot]"
<128996893+hoverkraft-bot[bot]@users.noreply.github.com>
Date: Tue, 17 Feb 2026 18:31:22 +0000
Subject: [PATCH] docs: update actions and workflows documentation
[skip ci]
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
.github/workflows/continuous-integration.md | 2 +-
actions/build/README.md | 6 +-
actions/codecov/README.md | 2 +-
actions/dependencies-cache/README.md | 2 +-
actions/get-package-manager/README.md | 2 +-
actions/has-installed-dependencies/README.md | 6 +-
actions/lint/README.md | 2 +-
actions/package/README.md | 115 ++++++++++++++++++-
actions/setup-node/README.md | 2 +-
actions/test/README.md | 2 +-
10 files changed, 127 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/continuous-integration.md b/.github/workflows/continuous-integration.md
index d2432e0..1b6815d 100644
--- a/.github/workflows/continuous-integration.md
+++ b/.github/workflows/continuous-integration.md
@@ -3,7 +3,7 @@
# GitHub Reusable Workflow: Node.js Continuous Integration
-

+
---
diff --git a/actions/build/README.md b/actions/build/README.md
index fdf3ea0..84e1cc8 100644
--- a/actions/build/README.md
+++ b/actions/build/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Build
-

+
---
@@ -30,7 +30,7 @@ Action to build Node.js projects with support for custom commands, environment v
## Usage
````yaml
-- uses: hoverkraft-tech/ci-github-nodejs/actions/build@25ef8d971c0a866fb9e5d90130c7aaa084619df6 # 0.21.0
+- uses: hoverkraft-tech/ci-github-nodejs/actions/build@c9d9d041ba4ef35695ee469c4782fa6a8bbebbcc # 0.21.2
with:
# Working directory where the build commands are executed.
# Can be absolute or relative to the repository root.
@@ -141,7 +141,7 @@ This project is licensed under the MIT License.
SPDX-License-Identifier: MIT
-Copyright © 2025 hoverkraft
+Copyright © 2026 hoverkraft
For more details, see the [license](http://choosealicense.com/licenses/mit/).
diff --git a/actions/codecov/README.md b/actions/codecov/README.md
index 9445474..1df6104 100644
--- a/actions/codecov/README.md
+++ b/actions/codecov/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Codecov
-

+
---
diff --git a/actions/dependencies-cache/README.md b/actions/dependencies-cache/README.md
index 2f041c2..b73f4b0 100644
--- a/actions/dependencies-cache/README.md
+++ b/actions/dependencies-cache/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Dependencies cache
-

+
---
diff --git a/actions/get-package-manager/README.md b/actions/get-package-manager/README.md
index 7421d02..cb1449b 100644
--- a/actions/get-package-manager/README.md
+++ b/actions/get-package-manager/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Get package manager
-

+
---
diff --git a/actions/has-installed-dependencies/README.md b/actions/has-installed-dependencies/README.md
index 6f35eb6..698ad62 100644
--- a/actions/has-installed-dependencies/README.md
+++ b/actions/has-installed-dependencies/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Has installed dependencies
-

+
---
@@ -33,7 +33,7 @@ Action to check if dependencies have been installed according to the package man
## Usage
```yaml
-- uses: hoverkraft-tech/ci-github-nodejs/actions/has-installed-dependencies@25ef8d971c0a866fb9e5d90130c7aaa084619df6 # 0.21.0
+- uses: hoverkraft-tech/ci-github-nodejs/actions/has-installed-dependencies@c9d9d041ba4ef35695ee469c4782fa6a8bbebbcc # 0.21.2
with:
# The dependencies to check.
# This input is required.
@@ -99,7 +99,7 @@ This project is licensed under the MIT License.
SPDX-License-Identifier: MIT
-Copyright © 2025 hoverkraft
+Copyright © 2026 hoverkraft
For more details, see the [license](http://choosealicense.com/licenses/mit/).
diff --git a/actions/lint/README.md b/actions/lint/README.md
index 4a71b5c..cc193b8 100644
--- a/actions/lint/README.md
+++ b/actions/lint/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Lint
-

+
---
diff --git a/actions/package/README.md b/actions/package/README.md
index 5b897db..54da4c1 100644
--- a/actions/package/README.md
+++ b/actions/package/README.md
@@ -1,6 +1,10 @@
-# GitHub Action: Package
+#  GitHub Action: Package
+
+
+

+
---
@@ -55,3 +59,112 @@ Action to create and upload an npm package tarball from a Node.js project.
## Contributing
Contributions are welcome! Please see the [contributing guidelines](https://github.com/hoverkraft-tech/ci-github-nodejs/blob/main/CONTRIBUTING.md) for more details.
+
+
+[](https://github.com/marketplace/actions/package)
+[](https://github.com/hoverkraft-tech/ci-github-nodejs/releases)
+[](http://choosealicense.com/licenses/mit/)
+[](https://img.shields.io/github/stars/hoverkraft-tech/ci-github-nodejs?style=social)
+[](https://github.com/hoverkraft-tech/ci-github-nodejs/blob/main/CONTRIBUTING.md)
+
+
+
+
+## Overview
+
+Action to create and upload an npm package tarball from a Node.js project
+
+
+
+
+## Usage
+
+```yaml
+- uses: hoverkraft-tech/ci-github-nodejs/actions/package@c9d9d041ba4ef35695ee469c4782fa6a8bbebbcc # 0.21.2
+ with:
+ # Working directory where the package is packed.
+ # Can be absolute or relative to the repository root.
+ #
+ # Default: `.`
+ working-directory: .
+
+ # Optional build artifact ID to download before packaging.
+ # When provided, the artifact will be downloaded to the workspace.
+ build-artifact-id: ""
+
+ # Optional path to the build artifact contents relative to the workspace root.
+ # Used to locate the files to be included in the package when a build artifact is downloaded.
+ #
+ # Default: `${{ github.workspace }}`
+ build-artifact-path: ${{ github.workspace }}
+
+ # Optional version to apply with `npm version` before packaging.
+ # The version is applied without creating a Git tag.
+ version: ""
+
+ # Name of the uploaded package tarball artifact
+ # Default: `package-tarball`
+ artifact-name: package-tarball
+```
+
+
+
+
+## Inputs
+
+| **Input** | **Description** | **Required** | **Default** |
+| ------------------------- | ------------------------------------------------------------------------------------------- | ------------ | ------------------------- |
+| **`working-directory`** | Working directory where the package is packed. | **false** | `.` |
+| | Can be absolute or relative to the repository root. | | |
+| **`build-artifact-id`** | Optional build artifact ID to download before packaging. | **false** | - |
+| | When provided, the artifact will be downloaded to the workspace. | | |
+| **`build-artifact-path`** | Optional path to the build artifact contents relative to the workspace root. | **false** | `${{ github.workspace }}` |
+| | Used to locate the files to be included in the package when a build artifact is downloaded. | | |
+| **`version`** | Optional version to apply with `npm version` before packaging. | **false** | - |
+| | The version is applied without creating a Git tag. | | |
+| **`artifact-name`** | Name of the uploaded package tarball artifact | **false** | `package-tarball` |
+
+
+
+
+
+
+## Outputs
+
+| **Output** | **Description** |
+| --------------------------------- | ---------------------------------------------- |
+| **`package-tarball-path`** | Absolute path to the generated package tarball |
+| **`package-tarball-artifact-id`** | Artifact ID of the uploaded package tarball |
+
+
+
+
+
+
+## Contributing
+
+Contributions are welcome! Please see the [contributing guidelines](https://github.com/hoverkraft-tech/ci-github-nodejs/blob/main/CONTRIBUTING.md) for more details.
+
+
+
+
+
+
+## License
+
+This project is licensed under the MIT License.
+
+SPDX-License-Identifier: MIT
+
+Copyright © 2026 hoverkraft
+
+For more details, see the [license](http://choosealicense.com/licenses/mit/).
+
+
+
+
+---
+
+This documentation was automatically generated by [CI Dokumentor](https://github.com/hoverkraft-tech/ci-dokumentor).
+
+
diff --git a/actions/setup-node/README.md b/actions/setup-node/README.md
index 0578e68..a320d4e 100644
--- a/actions/setup-node/README.md
+++ b/actions/setup-node/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Setup Node.js
-

+
---
diff --git a/actions/test/README.md b/actions/test/README.md
index 6496e8a..042e2fd 100644
--- a/actions/test/README.md
+++ b/actions/test/README.md
@@ -3,7 +3,7 @@
#  GitHub Action: Test
-

+
---