Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"langtag",
"lded",
"llms",
"micnncim",
"mingo",
"msapplication",
"nextid",
Expand Down Expand Up @@ -86,10 +87,15 @@
"webp",
"withastro",
"xiang",
"Yanis"
"Yanis",
"ZIZMOR"
],
"allowCompoundWords": true,
"language": "en,en-US",
"ignorePaths": ["*.mjs", ".cspell.json", "data-store.json"],
"ignorePaths": [
"*.mjs",
".cspell.json",
"data-store.json"
],
"useGitignore": true
}
2 changes: 2 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v5
with:
persist-credentials: false

- name: ⎔ Setup node
uses: actions/setup-node@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false

- uses: streetsidesoftware/cspell-action@v7
with:
check_dot_files: false
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
uses: actions/checkout@v5
with:
fetch-depth: 0
persist-credentials: false

- name: Super-linter
uses: super-linter/super-linter/slim@v8
uses: super-linter/super-linter/slim@v8.1.0
env:
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: '/test/'
Expand All @@ -45,6 +46,7 @@ jobs:
VALIDATE_CSS_PRETTIER: false
VALIDATE_EDITORCONFIG: false
VALIDATE_GIT_COMMITLINT: false
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
VALIDATE_HTML: false
VALIDATE_HTML_PRETTIER: false
VALIDATE_JAVASCRIPT_ES: false
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:

steps:
- uses: actions/checkout@v5
with:
persist-credentials: false

- uses: micnncim/action-label-syncer@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
steps:
- name: ⬇️ Checkout
uses: actions/checkout@v5
with:
persist-credentials: false

- name: ⎔ Setup node
uses: actions/setup-node@v4
Expand Down Expand Up @@ -47,6 +49,8 @@ jobs:

- name: ⬇️ Checkout
uses: actions/checkout@v5
with:
persist-credentials: false

- name: ⎔ Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
Expand Down
Loading