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
3 changes: 2 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"fediverse",
"Merbivore",
"Monokai",
"SARIF"
"SARIF",
"ZIZMOR"
],
"allowCompoundWords": true,
"language": "en,en-US",
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: "CodeQL"
name: 'CodeQL'

on:
push:
branches:
- main
- "!dependabot/**"
- '!dependabot/**'
pull_request:
branches:
- main
- "!dependabot/**"
- '!dependabot/**'
workflow_dispatch:

jobs:
Expand All @@ -22,12 +22,14 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: "javascript"
languages: 'javascript'
queries: +security-and-quality

- name: Perform CodeQL Analysis
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Check spelling"
name: 'Check spelling'
on:
push:
branches: [main]
Expand All @@ -13,8 +13,11 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v5
- uses: streetsidesoftware/cspell-action@v7
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false

- uses: streetsidesoftware/cspell-action@dcd03dc3e8a59ec2e360d0c62db517baa0b4bb6d # v7.2.0
with:
check_dot_files: false
incremental_files_only: true
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v5
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
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 @@ -44,9 +45,10 @@ jobs:
VALIDATE_CSS: false
VALIDATE_EDITORCONFIG: false
VALIDATE_GIT_COMMITLINT: false
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
VALIDATE_HTML_PRETTIER: false
VALIDATE_JAVASCRIPT_PRETTIER: false
VALIDATE_JSON_PRETTIER: false
VALIDATE_JSCPD: false
VALIDATE_NATURAL_LANGUAGE: false
VALIDTAE_YAML_PRETTIER: false
VALIDATE_YAML_PRETTIER: false
Loading