-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add support for the new progress notifications * Add a sanity check * .. * wip * Clean up tests * Clean up * Changelog, another test * await the timeout future * Use realm-core 14.8.0 * downgrade core * disable failing test * Rework test * Fix core version * Tweak test so it passes
- Loading branch information
Showing
8 changed files
with
120 additions
and
48 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 |
---|---|---|
|
@@ -39,7 +39,7 @@ jobs: | |
shell: bash | ||
|
||
- id: runner_os_lowercase | ||
# there is no such thing as ${{ tolower(runner.os) }}, hence this abomination ¯\_(ツ)_/¯ | ||
# there is no such thing as ${{ tolower(runner.os) }}, hence this abomination ¯\_(ツ)_/¯ | ||
# use with steps.runner_os_lowercase.outputs.os | ||
run: echo ${{ runner.os }} | awk '{print "os=" tolower($0)}' >> $GITHUB_OUTPUT | ||
shell: bash | ||
|
@@ -59,15 +59,15 @@ jobs: | |
ulimit -n 10240 | ||
if: ${{ contains(runner.os, 'macos') }} | ||
|
||
- name: Run tests ${{ runner }} ${{ runner.arch }} | ||
- name: Run tests ${{ runner.os }} ${{ runner.arch }} | ||
run: melos test:unit | ||
|
||
# TODO: Publish all reports | ||
- name: Publish Test Report | ||
uses: dorny/[email protected] | ||
if: success() || failure() | ||
with: | ||
name: Test Results Dart ${{ runner }} ${{ runner.arch }} | ||
name: Test Results Dart ${{ runner.os }} ${{ runner.arch }} | ||
path: test-results.json | ||
reporter: dart-json | ||
only-summary: true | ||
|
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
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
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
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
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
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
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