Skip to content

Commit d2c9477

Browse files
committed
🐛 fix(.github/workflows/test.yml): used env instead of token for codecov
using env now
1 parent 73278c0 commit d2c9477

File tree

2 files changed

+29
-28
lines changed

2 files changed

+29
-28
lines changed

Diff for: .github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ jobs:
4545

4646
- name: 📤 📊 Upload coverage reports to Codecov
4747
uses: codecov/codecov-action@v4.5.0
48+
env:
49+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4850
with:
4951
#fail_ci_if_error: true # optional (default = false)
5052
#files: ./coverage1.xml,./coverage2.xml # optional
5153
#flags: unittests # optional
5254
name: ☂️ codecov-umbrella # optional
53-
token: ${{ secrets.CODECOV_TOKEN }} # required
5455
verbose: true # optional (default = false)

Diff for: package.json

+27-27
Original file line numberDiff line numberDiff line change
@@ -131,79 +131,79 @@
131131
"cz-gitmoji-adapter": {
132132
"scopes": [
133133
".depcheckrc.json",
134-
".eslintignore",
135134
".eslintrc.json",
135+
".eslintignore",
136136
".gitignore",
137-
".prettierrc.json",
138137
".prettierignore",
138+
".prettierrc.json",
139139
"license",
140-
"commit-template.hbs",
141-
"commitlint.config.ts",
142140
"readme.md",
141+
"commitlint.config.ts",
142+
"commit-template.hbs",
143+
"default-template.hbs",
143144
"emojitypescommitmessages.txt",
144145
"jest.config.json",
145-
"package.json",
146-
"default-template.hbs",
147146
"package-lock.json",
148147
"release.config.ts",
148+
"package.json",
149149
"renovate.json",
150150
"tsconfig.json",
151151
"typedoc.json",
152152
".vscode/settings.json",
153153
"public/.gitkeep",
154154
"repo_management_files/cz-type-extract.js",
155+
"repo_management_files/cz-emoji-type-extract.js",
155156
"repo_management_files/directorystructuredocument.md",
156157
"repo_management_files/genericcommitmessages.md",
157158
"repo_management_files/gitmojisemver-extract.js",
158159
"repo_management_files/extractfilescopes.js",
159-
"repo_management_files/cz-emoji-type-extract.js",
160-
"repo_management_files/issues.sh",
161160
"repo_management_files/labels.sh",
162161
"repo_management_files/packagejsondocument.md",
162+
"repo_management_files/issues.sh",
163163
".husky/commit-msg",
164164
".husky/prepare-commit-msg",
165165
".husky/_/.gitignore",
166166
".husky/_/applypatch-msg",
167-
".husky/_/commit-msg",
168167
".husky/_/h",
169168
".husky/_/post-applypatch",
170169
".husky/_/post-checkout",
171170
".husky/_/post-commit",
172171
".husky/_/post-merge",
172+
".husky/_/commit-msg",
173173
".husky/_/post-rewrite",
174174
".husky/_/pre-applypatch",
175175
".husky/_/pre-auto-gc",
176176
".husky/_/pre-commit",
177-
".husky/_/pre-push",
178-
".husky/_/prepare-commit-msg",
179177
".husky/_/pre-rebase",
178+
".husky/_/prepare-commit-msg",
179+
".husky/_/pre-push",
180180
".github/dependabot.yml",
181181
".github/workflows/build.yml",
182182
".github/workflows/docs.yml",
183-
".github/workflows/lint.yml",
183+
".github/workflows/pr.yml",
184184
".github/workflows/release.yml",
185+
".github/workflows/lint.yml",
185186
".github/workflows/test.yml",
186-
".github/workflows/pr.yml",
187-
"test/.gitkeep",
188-
"test/bin/.gitkeep",
189-
"test/configs/.gitkeep",
190-
"test/middleware/.gitkeep",
191-
"test/models/.gitkeep",
192-
"test/plugins/.gitkeep",
193-
"test/routes/.gitkeep",
194-
"test/utils/.gitkeep",
195-
"test/controllers/.gitkeep",
196-
"test/views/.gitkeep",
197187
"src/app.ts",
198188
"src/bin/.gitkeep",
199-
"src/middleware/.gitkeep",
200-
"src/plugins/.gitkeep",
201189
"src/configs/.gitkeep",
202-
"src/controllers/.gitkeep",
190+
"src/middleware/.gitkeep",
191+
"src/routes/.gitkeep",
203192
"src/utils/.gitkeep",
193+
"src/controllers/.gitkeep",
194+
"src/plugins/.gitkeep",
204195
"src/views/.gitkeep",
205196
"src/models/.gitkeep",
206-
"src/routes/.gitkeep"
197+
"test/.gitkeep",
198+
"test/configs/.gitkeep",
199+
"test/bin/.gitkeep",
200+
"test/middleware/.gitkeep",
201+
"test/controllers/.gitkeep",
202+
"test/models/.gitkeep",
203+
"test/plugins/.gitkeep",
204+
"test/views/.gitkeep",
205+
"test/routes/.gitkeep",
206+
"test/utils/.gitkeep"
207207
],
208208
"questions": {
209209
"scope": "Specify a scope: "

0 commit comments

Comments
 (0)