aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2022-01-30 16:39:30 +0200
committerGitHub <[email protected]>2022-01-30 16:39:30 +0200
commite1020a43a5f68c15d3292296b4014b9d384f1b6f (patch)
tree1c57d7cc2746ff825c097636a391647e7351a4ac /.github/workflows
parent882185bbde9fa6ce0e7885404e76afa0090bdabb (diff)
downloadbootstrap-e1020a43a5f68c15d3292296b4014b9d384f1b6f.tar.xz
bootstrap-e1020a43a5f68c15d3292296b4014b9d384f1b6f.zip
Move cspell to Actions (#35593)
* Move cspell to Actions * Remove the now unused `docs-spellcheck` npm script
Diffstat (limited to '.github/workflows')
-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 000000000..6787888fe
--- /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