Remove argument seperator

This commit is contained in:
Shivangi Shree
2026-08-04 11:20:18 +05:30
parent 1b7bb56103
commit ebcd2443a0
7 changed files with 16 additions and 15 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ jobs:
- name: lint affected
if: ${{ github.event_name == 'pull_request' }}
run: pnpm affected:lint -- --base=origin/develop
run: pnpm affected:lint --base=origin/develop
- name: lint all
if: ${{ github.event_name != 'pull_request' }}
run: pnpm ci:lint
@@ -127,7 +127,7 @@ jobs:
- name: Test
if: ${{ github.event_name == 'pull_request' }}
run: pnpm affected:test -- --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop
run: pnpm affected:test --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop
- name: Test all
if: ${{ github.event_name != 'pull_request' }}
+2 -2
View File
@@ -62,7 +62,7 @@ jobs:
- uses: ./.github/actions/setup
- run: pnpm install --frozen-lockfile
- run: pnpm affected:lint -- --base=origin/develop
- run: pnpm affected:lint --base=origin/develop
- run: pnpm stylelint
unit-tests:
@@ -84,7 +84,7 @@ jobs:
- uses: ./.github/actions/before-install
- run: pnpm install --frozen-lockfile
- run: pnpm affected:test -- --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop
- run: pnpm affected:test --browsers=ChromeHeadless --watch=false $TEST_OPTS --base=origin/develop
publish-docker-registry:
if: ${{ always() }}