From e88b20e0094b0662e6cdd2848c6bd18b1c8cff6c Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Fri, 13 Jun 2025 11:49:43 +0100 Subject: [PATCH 1/2] ci: windows tests are passing on failed tests --- .github/workflows/validate.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 873b2745..92e38949 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -113,6 +113,9 @@ jobs: run: | dart pub global activate --source="path" . --executable="flutterfire" --overwrite - name: "Run Tests" - run: cmd /K melos run test --no-select + shell: bash + run: | + set -e + melos run test env: FIREBASE_TOKEN: ${{ env.FIREBASE_TOKEN }} From 1b4a03ebb4e9b7916f87f37dca70c6438f05a2cc Mon Sep 17 00:00:00 2001 From: russellwheatley Date: Fri, 13 Jun 2025 12:03:19 +0100 Subject: [PATCH 2/2] test: use --no-select --- .github/workflows/validate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index 92e38949..b2499ffa 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -116,6 +116,6 @@ jobs: shell: bash run: | set -e - melos run test + melos run test --no-select env: FIREBASE_TOKEN: ${{ env.FIREBASE_TOKEN }}