mirror of
https://github.com/gofiber/fiber.git
synced 2026-03-27 10:51:16 +00:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 6.2.0 to 6.3.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](6044e13b5d...53b83947a5)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: 6.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
70 lines
1.9 KiB
YAML
70 lines
1.9 KiB
YAML
name: Spell check
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- reopened
|
|
- ready_for_review
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
jobs:
|
|
cspell:
|
|
name: cspell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
|
|
with:
|
|
node-version: "20.x"
|
|
|
|
- name: Install cspell dictionaries
|
|
run: |
|
|
npm install --no-save \
|
|
@cspell/dict-en_us \
|
|
@cspell/dict-en-gb \
|
|
@cspell/dict-software-terms \
|
|
@cspell/dict-golang \
|
|
@cspell/dict-fullstack \
|
|
@cspell/dict-docker \
|
|
@cspell/dict-k8s \
|
|
@cspell/dict-node \
|
|
@cspell/dict-npm \
|
|
@cspell/dict-typescript \
|
|
@cspell/dict-html \
|
|
@cspell/dict-css \
|
|
@cspell/dict-shell \
|
|
@cspell/dict-python \
|
|
@cspell/dict-redis \
|
|
@cspell/dict-sql \
|
|
@cspell/dict-filetypes \
|
|
@cspell/dict-companies \
|
|
@cspell/dict-markdown \
|
|
@cspell/dict-en-common-misspellings \
|
|
@cspell/dict-people-names \
|
|
@cspell/dict-data-science
|
|
|
|
- name: Run cspell
|
|
uses: streetsidesoftware/cspell-action@9cd41bb518a24fefdafd9880cbab8f0ceba04d28 # v8.3.0
|
|
with:
|
|
incremental_files_only: false
|
|
check_dot_files: explicit
|
|
report: typos
|
|
verbose: true
|
|
|
|
- name: Run codespell
|
|
uses: codespell-project/actions-codespell@8f01853be192eb0f849a5c7d721450e7a467c579 # v2.2
|
|
with:
|
|
skip: ./.git,./node_modules,./**/*.go,./*.go,./.github/workflows/spell-check.yml
|
|
ignore_words_list: TE,te
|