/
githubmirror
/
bootstrap
Обзор
Документация
Войти
/
githubmirror
/
bootstrap
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/cspell.yml
38 строк
839 B
dependabot[bot]
Bump the github-actions group with 6 updates (#42762)
28 июл 2026, 14:00
Не верифицирован
28 июл 2026, 14:00
16490b2
Код
Авторство
О чём код?
name: cspell on: push: branches: - main pull_request: workflow_dispatch: env: FORCE_COLOR: 2 permissions: contents: read jobs: cspell: permissions: # allow streetsidesoftware/cspell-action to fetch files for commits and PRs contents: read pull-requests: read runs-on: ubuntu-latest steps: - name: Clone repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Run cspell uses: streetsidesoftware/cspell-action@de2a73e963e7443969755b648a1008f77033c5b2 # v8.4.0 with: config: ".cspell.json" files: | .gitignore **/*.{md,mdx,yml,yaml,json,js,cjs,mjs,ts} inline: error incremental_files_only: false