Skip to content

Commit 2afe81d

Browse files
committed
chore: fix lint issues
Signed-off-by: Emilien Escalle <[email protected]>
1 parent d36ebb3 commit 2afe81d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/linters/.jscpd.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"threshold": 5,
3-
"ignore": ["**/tests/npm/coverage/*", "**/node_modules/*"]
3+
"ignore": ["**/tests/npm/coverage/**", "**/node_modules/**"]
44
}

actions/build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Action to build Node.js projects with support for custom commands, environment v
7777
| **`working-directory`** | Working directory where the build commands are executed. | **false** | `.` |
7878
| | Can be absolute or relative to the repository root. | | |
7979
| **`build-commands`** | List of build commands to execute, one per line. | **true** | - |
80-
| | These are npm/pnpm/yarn script names (e.g., "build", "compile"). | | |
80+
| | These are npm/pnpm/Yarn script names (e.g., "build", "compile"). | | |
8181
| **`build-env`** | JSON object of environment variables to set during the build. | **false** | `\{}` |
8282
| | Example: {"NODE_ENV": "production", "API_URL": "<https://api.example.com"}> | | |
8383
| **`build-secrets`** | Multi-line string of secrets in env format (KEY=VALUE). | **false** | - |

actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inputs:
1515
build-commands:
1616
description: |
1717
List of build commands to execute, one per line.
18-
These are npm/pnpm/yarn script names (e.g., "build", "compile").
18+
These are npm/pnpm/Yarn script names (e.g., "build", "compile").
1919
required: true
2020
build-env:
2121
description: |

actions/test/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Action to test Node.js projects with support for coverage reporting and pull req
7575
| | Can be absolute or relative to the repository root. | | |
7676
| **`container`** | Whether running in container mode (skips checkout and node setup) | **false** | `false` |
7777
| **`coverage`** | Code coverage reporter to use. Supported values: | **false** | `github` |
78-
| | - "github": Use ReportGenerator for PR comments with coverage reports | | |
79-
| | - "codecov": Upload coverage to Codecov | | |
78+
| | - "GitHub": Use ReportGenerator for PR comments with coverage reports | | |
79+
| | - "Codecov": Upload coverage to Codecov | | |
8080
| | - "": No coverage reporting | | |
8181
| **`coverage-files`** | Path to coverage files for reporting. | **false** | - |
8282
| | Supports multiple formats (Cobertura, OpenCover, lcov, etc.). | | |
@@ -86,7 +86,7 @@ Action to test Node.js projects with support for coverage reporting and pull req
8686
| | - coverage/lcov.info | | |
8787
| | - coverage/clover.xml | | |
8888
| **`github-token`** | GitHub token for coverage PR comments. | **false** | - |
89-
| | Required when coverage is set to "github". | | |
89+
| | Required when coverage is set to "GitHub". | | |
9090

9191
<!-- inputs:end -->
9292
<!-- secrets:start -->

actions/test/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ inputs:
1919
coverage:
2020
description: |
2121
Code coverage reporter to use. Supported values:
22-
- "github": Use ReportGenerator for PR comments with coverage reports
23-
- "codecov": Upload coverage to Codecov
24-
- "": No coverage reporting
22+
- `github`: Use ReportGenerator for PR comments with coverage reports
23+
- `codecov`: Upload coverage to Codecov
24+
- `""` or `null`: No coverage reporting
2525
required: false
2626
default: "github"
2727
coverage-files:
@@ -38,7 +38,7 @@ inputs:
3838
github-token:
3939
description: |
4040
GitHub token for coverage PR comments.
41-
Required when coverage is set to "github".
41+
Required when coverage is set to `github`.
4242
required: false
4343
default: ""
4444

0 commit comments

Comments
 (0)