-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since version 4 uploading multiple artifacts with the same name is not supported by actions/upload-artifact anymore. See https://github.com/actions/upload-artifact/blob/cf8714cfeaba5687a442b9bcb85b29e23f468dfa/docs/MIGRATION.md for details.
- Loading branch information
Showing
1 changed file
with
5 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 |
---|---|---|
|
@@ -93,7 +93,7 @@ jobs: | |
- name: Upload Test Coverage | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage | ||
name: coverage-vm-test-${ matrix.dart-version } | ||
path: coverage/ | ||
|
||
# Runs the unit tests of the package with `dart test` in Node.js. | ||
|
@@ -127,7 +127,7 @@ jobs: | |
- name: Upload Test Coverage | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage | ||
name: coverage-js-test-${ matrix.node-version } | ||
path: coverage/ | ||
|
||
# Runs the unit tests of the package with `dart test` in Chrome. | ||
|
@@ -150,7 +150,7 @@ jobs: | |
- name: Upload Test Coverage | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage | ||
name: coverage-chrome-test | ||
path: coverage/ | ||
|
||
# Combines the test coverage information of all other jobs into a `lcov.info` | ||
|
@@ -168,8 +168,9 @@ jobs: | |
- name: Download Coverage | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: coverage | ||
pattern: coverage-* | ||
path: coverage/ | ||
merge-multiple: true | ||
- name: Use Dart SDK | ||
uses: dart-lang/[email protected] | ||
- name: Print Dart SDK Version | ||
|