From 470acfb6960ddc90b6b7448dfc6fb0b7bc456ea8 Mon Sep 17 00:00:00 2001 From: Shivangi Shree Date: Fri, 11 Sep 2026 17:05:06 +0530 Subject: [PATCH] [ACS-12322] remove positional arguments and fix test --- .github/workflows/e2e-playwright-reusable.yml | 2 +- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/run-e2e-with-env.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e-playwright-reusable.yml b/.github/workflows/e2e-playwright-reusable.yml index e29ba091b..c8b688d02 100644 --- a/.github/workflows/e2e-playwright-reusable.yml +++ b/.github/workflows/e2e-playwright-reusable.yml @@ -53,7 +53,7 @@ jobs: name: npm-logs path: /home/runner/.npm/_logs/ - run: pnpm ci:build aca-playwright-shared - - run: pnpm build -- $BUILD_OPTS + - run: pnpm build $BUILD_OPTS - name: dist cache if: ${{ success() }} diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index c3b012e7e..c2328b314 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -122,7 +122,7 @@ jobs: name: npm-logs path: /home/runner/.npm/_logs/ - run: pnpm ci:build aca-playwright-shared - - run: pnpm build -- $BUILD_OPTS + - run: pnpm build $BUILD_OPTS - name: dist cache if: ${{ success() }} @@ -157,7 +157,7 @@ jobs: - name: Test all if: ${{ github.event_name != 'pull_request' }} - run: pnpm ci:test -- $TEST_OPTS + run: pnpm ci:test $TEST_OPTS e2es-playwright: if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip-e2e') }} diff --git a/.github/workflows/run-e2e-with-env.yml b/.github/workflows/run-e2e-with-env.yml index 0625d224f..6ad38a003 100644 --- a/.github/workflows/run-e2e-with-env.yml +++ b/.github/workflows/run-e2e-with-env.yml @@ -74,7 +74,7 @@ jobs: - uses: ./.github/actions/before-install - run: pnpm install --frozen-lockfile - run: pnpm ci:build aca-playwright-shared - - run: pnpm build -- $BUILD_OPTS + - run: pnpm build $BUILD_OPTS - name: dist cache if: ${{ success() }}