mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-16 07:26:35 +00:00
24 lines
533 B
YAML
24 lines
533 B
YAML
name: codespell
|
|
on: [pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
codespell:
|
|
name: codespell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: codespell
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
skip: package.json,package-lock.json
|
|
ignore_words_list: erro
|