Skip to content

Commit 4fdbc2b

Browse files
committed
chore: remove duplicated args
1 parent db6ed54 commit 4fdbc2b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Install dependencies
7474
run: npm ci
7575
- name: Unit test affected projects
76-
run: npx nx affected -t unit-test --parallel=3 --coverage.enabled
76+
run: npx nx affected -t unit-test --parallel=3
7777

7878
integration-test:
7979
strategy:
@@ -97,7 +97,7 @@ jobs:
9797
- name: Install dependencies
9898
run: npm ci
9999
- name: Integration test affected projects
100-
run: npx nx affected -t int-test --parallel=3 --coverage.enabled
100+
run: npx nx affected -t int-test --parallel=3
101101

102102
e2e:
103103
strategy:

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Install dependencies
4949
run: npm ci
5050
- name: Execute tests with coverage
51-
run: npx nx run ${{ matrix.project }}:${{ matrix.target }} --coverage.enabled
51+
run: npx nx run ${{ matrix.project }}:${{ matrix.target }}
5252
- name: Upload coverage reports to Codecov
5353
uses: codecov/codecov-action@v4
5454
with:

0 commit comments

Comments
 (0)