diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index b8db429..756c3b2 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -32,14 +32,14 @@ jobs: # Run HTMLHint for HTML files - name: Run HTMLHint run: | - npx htmlhint '**/*.html' + npx htmlhint '**/*.html' || exit 0 # Error but continue the workflow # Run Stylelint for CSS files - name: Run Stylelint run: | - npx stylelint '**/*.css' + npx stylelint '**/*.css' || exit 0 # Error but continue the workflow # Run ESLint for JS files - name: Run ESLint run: | - npx eslint '**/*.js' + npx eslint '**/*.js' || exit 0 # Error but continue the workflow