From 70c6fdeb85ff00be6c0ea97bf589e284661db81c Mon Sep 17 00:00:00 2001 From: Vladislav Volosnikov Date: Fri, 18 Aug 2023 16:43:28 +0300 Subject: [PATCH] [Common] add codespell workflow --- .github/workflows/checks.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/checks.yml diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 000000000..06ade29cf --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,24 @@ +name: checks + +on: + push: + branches: + - master + - staged + pull_request: {} + workflow_dispatch: {} + +env: + NODE_OPTIONS: --max_old_space_size=5120 + +jobs: + codespell: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run CodeSpell + uses: codespell-project/actions-codespell@v2.0 + with: + check_hidden: true + check_filenames: true + skip: package-lock.json,node_modules \ No newline at end of file