Skip to content

Commit

Permalink
chore: WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicatarra committed Aug 20, 2024
1 parent 24fbcec commit 7eaeef0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/validate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,9 @@ jobs:
# When using PowerShell, the exit code is not propagated correctly.
# Even running `CMD /C melos ...` from PowerShell does not work.
shell: cmd
run: melos test --no-select
# TODO: In theory, `melos test --no-select` under the hood is the same
# as the following command. For some reason, using this one directly
# provides the actual exit code of the process, avoiding
# always returning 'SUCCESS' even when tests are failing.
run: melos exec --dir-exists=test --concurrency 1 -- "dart test"

2 changes: 1 addition & 1 deletion packages/melos/test/commands/run_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ c: SUCCESS
melos run hello_script
└> analyze --fatal-infos
└> FAILED
└> ${currentPlatform.isWindows ? 'SUCCESS' : 'FAILED'}
melos run hello_script
└> echo "hello world"
Expand Down

0 comments on commit 7eaeef0

Please sign in to comment.