Skip to content

Commit a065283

Browse files
Alexander Kharkoveyklerick
authored andcommitted
chore(json-api-nestjs): fix params in ci/cd
1 parent 0108b68 commit a065283

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
- name: Install dependencies
3030
run: npm ci
3131
- name: Test
32-
run: npx nx affected:test -- --base=remotes/origin/master
32+
run: npx nx affected:test --base=remotes/origin/master
3333
env:
3434
CI: true

.github/workflows/Release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: npm ci
3131
- name: Test
3232
run: |
33-
npx run-many -- --target=test --all --code-coverage --coverage --reporters=default --reporters=default --coverageReporters=cobertura,html,json
33+
npx run-many --target=test --all --code-coverage --coverage --reporters=default --reporters=default --coverageReporters=cobertura,html,json
3434
SUMMARY=$(node ./tools/utils/merge-codecoverage/index.js | grep "All files" | awk '{print $4}')
3535
echo "COVERAGE=$(echo ${SUMMARY})" >> $GITHUB_ENV
3636
- name: Cretae Badge
@@ -44,5 +44,5 @@ jobs:
4444
color: green
4545
namedLogo: jest
4646
- name: Deploy
47-
run: npx nx affected -- --target=deploy --base=$BEFORE_SHA
47+
run: npx nx affected --target=deploy --base=$BEFORE_SHA
4848

0 commit comments

Comments
 (0)