Skip to content

Commit

Permalink
fixing merge report
Browse files Browse the repository at this point in the history
  • Loading branch information
prayanshchh committed Nov 26, 2024
1 parent 0c23834 commit bec94ad
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ jobs:
- name: Check for linting errors in modified files
if: steps.changed-files.outputs.only_changed != 'true'
env:
CHANGED_FILES: ${{ steps.changed_files.outputs.all_changed_files }}
run: npx eslint ${CHANGED_FILES} && python .github/workflows/eslint_disable_check.py
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: npx eslint "${CHANGED_FILES}" && python .github/workflows/eslint_disable_check.py

- name: Check for TSDoc comments
run: npm run check-tsdoc # Run the TSDoc check script
Expand Down Expand Up @@ -204,6 +204,7 @@ jobs:
env:
NODE_V8_COVERAGE: './.nyc_output'
run: |
mkdir -p ./.nyc_output
npm run test -- --watchAll=false --coverage
- name: Run Vitest Tests
Expand All @@ -216,7 +217,8 @@ jobs:
- name: Merge Coverage Reports
if: steps.changed-files.outputs.only_changed != 'true'
run: |
npx nyc merge
mkdir -p ./coverage
npx nyc merge || exit 1
mv coverage.json ./coverage/lcov.info
- name: TypeScript compilation for changed files
Expand Down

0 comments on commit bec94ad

Please sign in to comment.