Skip to content

Commit fc47a4d

Browse files
committed
🐛 fix(.github/workflows/test.yml): added additional config options to test workflow
added additional parameters to test workflow
1 parent c9b790f commit fc47a4d

File tree

2 files changed

+22
-24
lines changed

2 files changed

+22
-24
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,13 @@ jobs:
3939

4040
- name: 📤 📊 Upload coverage reports to Codecov
4141
uses: codecov/codecov-action@v4
42-
env:
43-
CODECOV_TOKEN: ${{ secrets.token }}
4442
with:
45-
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
43+
token: ${{ secrets.token }} # not required for public repos
4644
# file: ./coverage.xml # optional
4745
# files: ./coverage1.xml,./coverage2.xml # optional
48-
# directory: ./coverage/reports/ # optional
49-
# flags: unittests # optional
50-
# env_vars: OS,PYTHON # optional
46+
directory: ./coverage/lcov-report/ # optional
47+
flags: unittests # optional
48+
# env_vars: OS,NODE # optional
5149
name: ☂️ codecov-umbrella # optional
52-
# fail_ci_if_error: true # optional (default = false)
50+
fail_ci_if_error: true # optional (default = false)
5351
verbose: true # optional (default = false)

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -134,77 +134,77 @@
134134
".eslintignore",
135135
".eslintrc.json",
136136
".gitignore",
137-
".prettierrc.json",
138137
".prettierignore",
138+
".prettierrc.json",
139139
"license",
140140
"readme.md",
141141
"commit-template.hbs",
142142
"commitlint.config.ts",
143143
"default-template.hbs",
144+
"emojitypescommitmessages.txt",
144145
"jest.config.json",
145146
"package-lock.json",
146147
"package.json",
147-
"emojitypescommitmessages.txt",
148-
"renovate.json",
149-
"typedoc.json",
150148
"release.config.ts",
149+
"renovate.json",
151150
"tsconfig.json",
151+
"typedoc.json",
152152
".vscode/settings.json",
153153
"public/.gitkeep",
154154
"repo_management_files/cz-emoji-type-extract.js",
155155
"repo_management_files/cz-type-extract.js",
156156
"repo_management_files/directorystructuredocument.md",
157157
"repo_management_files/extractfilescopes.js",
158+
"repo_management_files/genericcommitmessages.md",
158159
"repo_management_files/gitmojisemver-extract.js",
159160
"repo_management_files/issues.sh",
160161
"repo_management_files/labels.sh",
161162
"repo_management_files/packagejsondocument.md",
162-
"repo_management_files/genericcommitmessages.md",
163163
".github/dependabot.yml",
164164
".github/workflows/build.yml",
165165
".github/workflows/docs.yml",
166166
".github/workflows/lint.yml",
167-
".github/workflows/release.yml",
168167
".github/workflows/pr.yml",
168+
".github/workflows/release.yml",
169169
".github/workflows/test.yml",
170170
".husky/commit-msg",
171171
".husky/prepare-commit-msg",
172+
".husky/_/.gitignore",
172173
".husky/_/applypatch-msg",
173174
".husky/_/commit-msg",
174175
".husky/_/h",
176+
".husky/_/post-applypatch",
175177
".husky/_/post-checkout",
176178
".husky/_/post-commit",
177-
".husky/_/post-applypatch",
178179
".husky/_/post-merge",
179-
".husky/_/pre-applypatch",
180180
".husky/_/post-rewrite",
181-
".husky/_/.gitignore",
181+
".husky/_/pre-applypatch",
182182
".husky/_/pre-auto-gc",
183+
".husky/_/pre-commit",
183184
".husky/_/pre-push",
184185
".husky/_/pre-rebase",
185186
".husky/_/prepare-commit-msg",
186-
".husky/_/pre-commit",
187187
"src/app.ts",
188188
"src/bin/.gitkeep",
189-
"src/controllers/.gitkeep",
190189
"src/configs/.gitkeep",
190+
"src/controllers/.gitkeep",
191+
"src/middleware/.gitkeep",
191192
"src/models/.gitkeep",
192193
"src/plugins/.gitkeep",
193-
"src/middleware/.gitkeep",
194-
"src/views/.gitkeep",
195194
"src/routes/.gitkeep",
196195
"src/utils/.gitkeep",
196+
"src/views/.gitkeep",
197197
"test/.gitkeep",
198198
"test/app.test.ts",
199-
"test/configs/.gitkeep",
200199
"test/bin/.gitkeep",
200+
"test/configs/.gitkeep",
201+
"test/controllers/.gitkeep",
201202
"test/middleware/.gitkeep",
202203
"test/models/.gitkeep",
203-
"test/controllers/.gitkeep",
204+
"test/plugins/.gitkeep",
204205
"test/routes/.gitkeep",
205-
"test/views/.gitkeep",
206206
"test/utils/.gitkeep",
207-
"test/plugins/.gitkeep"
207+
"test/views/.gitkeep"
208208
],
209209
"questions": {
210210
"scope": "Specify a scope: "

0 commit comments

Comments
 (0)