Skip to content

Commit

Permalink
build: ensure workflow continues even if linting exits with non-zero …
Browse files Browse the repository at this point in the history
…status code
  • Loading branch information
Planeshifter committed Aug 2, 2024
1 parent 70483fd commit 1c46d43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lint_autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
id: fix-lint-errors
run: |
files="${{ steps.changed-files.outputs.files }}"
FIX=1 . "$GITHUB_WORKSPACE/.github/workflows/scripts/lint_javascript_files" "$files"
FIX=1 . "$GITHUB_WORKSPACE/.github/workflows/scripts/lint_javascript_files" "$files" || true
# Add missing trailing newlines:
- name: 'Add missing trailing newlines'
Expand Down

0 comments on commit 1c46d43

Please sign in to comment.