Skip to content

Commit

Permalink
Fix YAML and JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvins committed Oct 25, 2024
1 parent 5401fe3 commit 0d5847a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ jobs:
link-checker:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@main
- name: Check Links
uses: lycheeverse/lychee-action@v1.7.0
with:
fail: true
- name: Checkout Code
uses: actions/checkout@main
- name: Check Links
uses: lycheeverse/lychee-action@v1.7.0
with:
fail: true
6 changes: 5 additions & 1 deletion .github/workflows/lint-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
uses: super-linter/super-linter@v7.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MARKDOWN_CONFIG_FILE: ".markdownlint.json"
MARKDOWN_CONFIG_FILE: .markdownlint.json
VALIDATE_GO: true
VALIDATE_RUBY: true
VALIDATE_JSON: true
VALIDATE_YAML: true
VALIDATE_KOTLIN: true
VALIDATE_MARKDOWN: true
VALIDATE_SCALAFMT: true
Expand All @@ -26,5 +28,7 @@ jobs:
VALIDATE_PYTHON_BLACK: true
VALIDATE_PYTHON_ISORT: true
VALIDATE_JAVASCRIPT_ES: true
VALIDATE_JSON_PRETTIER: true
VALIDATE_YAML_PRETTIER: true
VALIDATE_MARKDOWN_PRETTIER: true
VALIDATE_GOOGLE_JAVA_FORMAT: true
2 changes: 1 addition & 1 deletion .markdownlint.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"MD045": false
"MD045": false
}

0 comments on commit 0d5847a

Please sign in to comment.