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' }}