From d343220a5cff2695ab6d8337f769b7c867898a85 Mon Sep 17 00:00:00 2001 From: Ezhil Shanmugham Date: Thu, 2 May 2024 03:04:52 +0530 Subject: [PATCH] chore: added codespell --- .github/workflows/ci-docs.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci-docs.yml diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml new file mode 100644 index 0000000000..2c4b55deb9 --- /dev/null +++ b/.github/workflows/ci-docs.yml @@ -0,0 +1,28 @@ +name: Build docs + +on: + push: + branches: + - "**" + paths: + - "docs/**" + - "**.md" + pull_request: + branches: [main] + types: [opened, reopened, synchronize] + paths: + - "docs/**" + - "**.md" + +jobs: + check_spelling: + name: Check spelling + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: codespell-project/actions-codespell@v2 + with: + skip: .git,*/package.json,*/package-lock.json,*.lock,.github,.vscode,assets + ignore_words_file: .codespellignore + check_hidden: false