-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📦 Update dependency codecov to v5 (#40189)
* 📦 Update dependency codecov to v5 * Forward fix codecov parameters in circleci config * Tag-along fix for cache saving config --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Rozenberg <[email protected]>
- Loading branch information
1 parent
67e9897
commit a09bcf8
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
||
|
@@ -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: | ||
|
@@ -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 | ||
|
@@ -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 | ||
|