From b3ded115faa1433b17fc07b2ab42ef8de990d054 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 30 Sep 2024 13:26:15 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Dmitry Gozman Signed-off-by: Max Schmitt --- .github/workflows/tests_secondary.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index 74b41ac7a8..920b92b653 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -214,14 +214,14 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04, macos-13, windows-latest] - headless: [true, false] + headed: ['--headed', ''] steps: - uses: actions/checkout@v4 - uses: ./.github/actions/run-test with: browsers-to-install: chromium-tip-of-tree - command: npm run ctest ${{ matrix.headless && '--headless' || '' }} - bot-name: "tip-of-tree-${{ matrix.os }}" + command: npm run ctest -- ${{ matrix.headed }} + bot-name: "tip-of-tree-${{ matrix.os }}${{ matrix.headed }}" flakiness-client-id: ${{ secrets.AZURE_FLAKINESS_DASHBOARD_CLIENT_ID }} flakiness-tenant-id: ${{ secrets.AZURE_FLAKINESS_DASHBOARD_TENANT_ID }} flakiness-subscription-id: ${{ secrets.AZURE_FLAKINESS_DASHBOARD_SUBSCRIPTION_ID }}