Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📦 Update dependency codecov to v5 #40189

Merged
merged 3 commits into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

orbs:
browser-tools: circleci/[email protected]
codecov: codecov/codecov@4.2.0
codecov: codecov/codecov@5.0.0
macos: circleci/[email protected]
node: circleci/[email protected]

Expand Down Expand Up @@ -156,7 +156,8 @@ commands:
- save_cache:
name: '💾 Save node_modules/ Cache'
key: node-modules-cache-{{ arch }}-v3-{{ checksum "package-lock.json" }}
paths: node_modules/
paths:
- node_modules/
teardown_vm:
steps:
- persist_to_workspace:
Expand Down Expand Up @@ -335,7 +336,8 @@ jobs:
name: '⭐⭐⭐ All Unit Tests ⭐⭐⭐'
command: node build-system/pr-check/unit-tests.js
- codecov/upload:
file: test/coverage/lcov-unit.info
disable_search: true
files: test/coverage/lcov-unit.info
flags: unit_tests
- store_test_output
- store_filelist
Expand All @@ -350,7 +352,8 @@ jobs:
name: '⭐⭐⭐ Unminified Tests ⭐⭐⭐'
command: node build-system/pr-check/unminified-tests.js
- codecov/upload:
file: test/coverage/lcov-integration.info
disable_search: true
files: test/coverage/lcov-integration.info
flags: integration_tests
- store_test_output
- teardown_vm
Expand Down
Loading