Skip to content

Commit b9528f6

Browse files
committed
🐛 fix: trying with env token and v4
trying from example
1 parent 53c95c3 commit b9528f6

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,11 @@ jobs:
3838
run: npm test
3939

4040
- name: 📤 📊 Upload coverage reports to Codecov
41-
uses: codecov/codecov-action@v3
41+
uses: codecov/codecov-action@v4
42+
env:
43+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4244
with:
43-
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
45+
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
4446
# file: ./coverage.xml # optional
4547
# files: ./coverage1.xml,./coverage2.xml # optional
4648
# 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",
166165
".github/workflows/docs.yml",
167166
".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",
173174
".husky/_/commit-msg",
174175
".husky/_/h",
175-
".husky/_/post-checkout",
176176
".husky/_/post-applypatch",
177-
".husky/_/applypatch-msg",
177+
".husky/_/post-checkout",
178178
".husky/_/post-commit",
179179
".husky/_/post-merge",
180180
".husky/_/post-rewrite",
181+
".husky/_/pre-applypatch",
181182
".husky/_/pre-auto-gc",
182183
".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/models/.gitkeep",
192191
"src/middleware/.gitkeep",
192+
"src/models/.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/plugins/.gitkeep",
204203
"test/models/.gitkeep",
205-
"test/utils/.gitkeep",
204+
"test/plugins/.gitkeep",
206205
"test/routes/.gitkeep",
206+
"test/utils/.gitkeep",
207207
"test/views/.gitkeep"
208208
],
209209
"questions": {

0 commit comments

Comments
 (0)