Skip to content

Commit 53c95c3

Browse files
committed
🐛 fix(.github/workflows/test.yml): added token to test
testing with token
1 parent c2ecd75 commit 53c95c3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: 📤 📊 Upload coverage reports to Codecov
4141
uses: codecov/codecov-action@v3
4242
with:
43-
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
43+
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
4444
# file: ./coverage.xml # optional
4545
# files: ./coverage1.xml,./coverage2.xml # optional
4646
# directory: ./coverage/reports/ # optional

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -162,34 +162,34 @@
162162
"repo_management_files/packagejsondocument.md",
163163
".github/dependabot.yml",
164164
".github/workflows/build.yml",
165+
".github/workflows/pr.yml",
165166
".github/workflows/docs.yml",
166167
".github/workflows/lint.yml",
167-
".github/workflows/pr.yml",
168168
".github/workflows/release.yml",
169169
".github/workflows/test.yml",
170170
".husky/commit-msg",
171171
".husky/prepare-commit-msg",
172172
".husky/_/.gitignore",
173-
".husky/_/applypatch-msg",
174173
".husky/_/commit-msg",
175174
".husky/_/h",
176-
".husky/_/post-applypatch",
177175
".husky/_/post-checkout",
176+
".husky/_/post-applypatch",
177+
".husky/_/applypatch-msg",
178178
".husky/_/post-commit",
179179
".husky/_/post-merge",
180180
".husky/_/post-rewrite",
181-
".husky/_/pre-applypatch",
182181
".husky/_/pre-auto-gc",
183182
".husky/_/pre-commit",
183+
".husky/_/pre-applypatch",
184184
".husky/_/pre-push",
185185
".husky/_/pre-rebase",
186186
".husky/_/prepare-commit-msg",
187187
"src/app.ts",
188188
"src/bin/.gitkeep",
189189
"src/configs/.gitkeep",
190190
"src/controllers/.gitkeep",
191-
"src/middleware/.gitkeep",
192191
"src/models/.gitkeep",
192+
"src/middleware/.gitkeep",
193193
"src/plugins/.gitkeep",
194194
"src/routes/.gitkeep",
195195
"src/utils/.gitkeep",
@@ -200,10 +200,10 @@
200200
"test/configs/.gitkeep",
201201
"test/controllers/.gitkeep",
202202
"test/middleware/.gitkeep",
203-
"test/models/.gitkeep",
204203
"test/plugins/.gitkeep",
205-
"test/routes/.gitkeep",
204+
"test/models/.gitkeep",
206205
"test/utils/.gitkeep",
206+
"test/routes/.gitkeep",
207207
"test/views/.gitkeep"
208208
],
209209
"questions": {

0 commit comments

Comments
 (0)