File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,12 @@ jobs:
116
116
# Lint filenames:
117
117
echo "${{ steps.changed-files.outputs.files }}" || "${lint_filenames}"
118
118
119
+ # Lint files against EditorConfig:
120
+ - name : ' Lint against EditorConfig'
121
+ if : success() || failure()
122
+ run : |
123
+ make lint-editorconfig-files FILES="${{ steps.changed-files.outputs.files }}"
124
+
119
125
# Lint Markdown files:
120
126
- name : ' Lint Markdown files'
121
127
if : success() || failure()
Original file line number Diff line number Diff line change @@ -195,6 +195,12 @@ jobs:
195
195
# Lint filenames:
196
196
echo "${{ steps.random-files.outputs.files }}" | tr ',' '\n' | "${lint_filenames}"
197
197
198
+ # Lint files against EditorConfig:
199
+ - name : ' Lint against EditorConfig'
200
+ if : success() || failure()
201
+ run : |
202
+ make lint-editorconfig-files FILES="${{ steps.random-files.outputs.files }}"
203
+
198
204
# Lint Markdown files:
199
205
- name : ' Lint Markdown files'
200
206
if : ( github.event.inputs.markdown != 'false' ) && ( success() || failure() )
You can’t perform that action at this time.
0 commit comments