We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45b962d commit e682ec7Copy full SHA for e682ec7
1 file changed
.github/workflows/ci.yml
@@ -70,13 +70,16 @@ jobs:
70
strategy:
71
matrix:
72
os: [ubuntu-latest, macos-26]
73
+ # The "--test-coverage-exclude" flag is supported in v22.5.0 and later.
74
+ # By default, all matching test files are excluded from the coverage report.
75
+ # Only Node.js 22.x requires explicitly declaring test file exclusions.
76
node:
77
- version: 20.x
78
options: ''
79
- version: 22.x
80
options: --test-coverage-exclude=test/**/*.js
81
- version: 24.x
- options: --test-coverage-exclude=test/**/*.js
82
+ options: ''
83
84
steps:
85
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
0 commit comments