Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudTT committed Sep 18, 2024
1 parent 7f056c8 commit 4907dbd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/lint-and-license-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
node-version: '16'

- name: Install dependencies
working-directory: app/frontend
working-directory: app/frontend
run: npm install

- name: Run ESLint
Expand All @@ -54,7 +54,7 @@ jobs:
echo "HAS_ERRORS=false" >> $GITHUB_ENV
fi
exit $exit_code
exit 0 # Always exit with 0 to avoid failing the step
- name: Comment on PR with ESLint Errors
if: env.HAS_ERRORS == 'true'
Expand All @@ -74,8 +74,6 @@ jobs:
repo: repo,
body: commentBody
});
} else {
console.log("No ESLint errors to report.");
- name: Fail if Errors Exist
if: env.HAS_ERRORS == 'true'
Expand Down

0 comments on commit 4907dbd

Please sign in to comment.