Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2022-01-30 17:39:30 +0300
committerGitHub <noreply@github.com>2022-01-30 17:39:30 +0300
commite1020a43a5f68c15d3292296b4014b9d384f1b6f (patch)
tree1c57d7cc2746ff825c097636a391647e7351a4ac /.github
parent882185bbde9fa6ce0e7885404e76afa0090bdabb (diff)
Move cspell to Actions (#35593)
* Move cspell to Actions * Remove the now unused `docs-spellcheck` npm script
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cspell.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/cspell.yml b/.github/workflows/cspell.yml
new file mode 100644
index 0000000000..6787888fec
--- /dev/null
+++ b/.github/workflows/cspell.yml
@@ -0,0 +1,28 @@
+name: cspell
+
+on:
+ push:
+ branches-ignore:
+ - "dependabot/**"
+ pull_request:
+ workflow_dispatch:
+
+env:
+ FORCE_COLOR: 2
+ NODE: 16
+
+jobs:
+ cspell:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Clone repository
+ uses: actions/checkout@v2
+
+ - name: Run cspell
+ uses: streetsidesoftware/cspell-action@v1
+ with:
+ config: ".cspell.json"
+ files: "**/*.md"
+ inline: error
+ incremental_files_only: false