Skip to content

Commit

Permalink
chore: workaround for changed files check due to forcce push
Browse files Browse the repository at this point in the history
  • Loading branch information
joscha committed May 14, 2024
1 parent ea09407 commit 70e85af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/pull-request-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- uses: jitterbit/get-changed-files@v1
id: changed_files
name: Get changed files
continue-on-error: true
- id: md_changed_files
name: Spellcheck Markdown files
run: |-
Expand Down Expand Up @@ -93,13 +94,15 @@ jobs:
uses: jitterbit/get-changed-files@v1
with:
format: 'space-delimited'
continue-on-error: true
- name: Lint changed files
run: npx eslint --quiet ${{ steps.changed_files_space.outputs.added_modified }} ${{ steps.changed_files_space.outputs.renamed }}
- name: Get Changed Files (comma-separated)
id: changed_files
uses: jitterbit/get-changed-files@v1
with:
format: 'csv'
continue-on-error: true
# NOTE: These steps are kept in this workflow to avoid re-rerunning the rest of the lint job
# in the Components Checks workflow
- name: Check component keys
Expand Down

0 comments on commit 70e85af

Please sign in to comment.