Skip to content

Commit 1ce3190

Browse files
committed
Finish up CI improvements
this includes spellcheck for both other files and markdown updated lint script that has more options - including formatting enabled markdown link checker as the first pass on making sure links work update CI to only activate on changed files
1 parent d1f826f commit 1ce3190

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212
- name: MegaLinter
13-
run: ./scripts/lint
13+
run: ./scripts/lint -c
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.mega-linter.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ DISABLE_LINTERS:
1212
- YAML_V8R
1313
- SPELL_LYCHEE
1414
- MARKDOWN_MARKDOWNLINT
15+
- MARKDOWN_MARKDOWN_TABLE_FORMATTER
1516
PRINT_ALL_FILES: false
1617
DOCKERFILE_HADOLINT_ARGUMENTS: "--ignore DL3008 --ignore DL4006 --ignore DL3009 --ignore DL3059"
1718
SHOW_ELAPSED_TIME: true

scripts/lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ VALIDATE_ALL_CODEBASE=true
88
while [[ $# -gt 0 ]]; do
99
case "$1" in
1010
-f | --fix)
11-
APPLY_FIXES=true
11+
APPLY_FIXES=all
1212
;;
1313
-c | --changes-only)
1414
VALIDATE_ALL_CODEBASE=false

0 commit comments

Comments
 (0)