-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(types): dedupe unique and greatest strategy needs id (#11945)
- Loading branch information
Showing
3 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ jobs: | |
- uses: Ana06/[email protected] | ||
id: changed_files | ||
name: Get changed files | ||
continue-on-error: true | ||
- id: md_changed_files | ||
name: Spellcheck Markdown files | ||
run: |- | ||
|
@@ -93,13 +94,15 @@ jobs: | |
uses: Ana06/[email protected] | ||
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: Ana06/[email protected] | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters