From 6e566666fbb7e5e75aca1a8cb3746376ebdc7e2a Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Sat, 7 May 2022 16:26:55 -0500 Subject: [PATCH] feat: add cspell --- .github/workflows/main.yaml | 20 ++++++++++++++------ .vscode/cspell.json | 11 +++++++++++ 2 files changed, 25 insertions(+), 6 deletions(-) create mode 100644 .vscode/cspell.json diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 5bef442d..7e51cd10 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -8,9 +8,17 @@ on: [pull_request, push] jobs: build: - uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 - with: - flutter_channel: stable - flutter_version: 2.10.5 - coverage_excludes: "lib/gen/*.dart" - test_optimization: false + name: Continuous Integration + runs-on: ubuntu-latest + steps: + - uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1 + with: + flutter_channel: stable + flutter_version: 2.10.5 + coverage_excludes: "lib/gen/*.dart" + test_optimization: false + - name: Check spelling + uses: zwaldowski/cspell-action@v1 + with: + paths: "**/*.{md,html}" + config: .vscode/cspell.json diff --git a/.vscode/cspell.json b/.vscode/cspell.json new file mode 100644 index 00000000..fe26d17f --- /dev/null +++ b/.vscode/cspell.json @@ -0,0 +1,11 @@ +{ + "version": "0.2", + "enabled": true, + "language": "en", + "words": [ + + ], + "ignorePaths": [ + ".github/workflows/**" + ] + } \ No newline at end of file