From ff07e41af8a5c12b6499d28a5b2fc919040e3719 Mon Sep 17 00:00:00 2001 From: Salakar Date: Mon, 11 Dec 2023 13:54:51 +0000 Subject: [PATCH] - --- .github/.cspell/dart_dictionary.txt | 5 +++++ .github/.cspell/people_usernames.txt | 1 + .github/workflows/docs_comment.yaml | 5 +++-- .github/workflows/spell_checker.yml | 18 +++++++++++++----- 4 files changed, 22 insertions(+), 7 deletions(-) diff --git a/.github/.cspell/dart_dictionary.txt b/.github/.cspell/dart_dictionary.txt index d1d83a5c..8d14f043 100644 --- a/.github/.cspell/dart_dictionary.txt +++ b/.github/.cspell/dart_dictionary.txt @@ -1,3 +1,8 @@ # Keywords/terms specific to the Dart/Flutter ecosystem dartdoc pubspec +unawaited +endtemplate +gitignores +writeln +Stderrs \ No newline at end of file diff --git a/.github/.cspell/people_usernames.txt b/.github/.cspell/people_usernames.txt index 8e380f4b..fd9fd341 100644 --- a/.github/.cspell/people_usernames.txt +++ b/.github/.cspell/people_usernames.txt @@ -1 +1,2 @@ # Specific people's names and/or usernames +rroussel \ No newline at end of file diff --git a/.github/workflows/docs_comment.yaml b/.github/workflows/docs_comment.yaml index 703f99b5..c4151702 100644 --- a/.github/workflows/docs_comment.yaml +++ b/.github/workflows/docs_comment.yaml @@ -1,3 +1,4 @@ +name: docs_preview on: pull_request: paths: @@ -6,7 +7,7 @@ on: # types: [opened] jobs: - add_docs_link: + comment_link: runs-on: ubuntu-latest steps: - name: Checkout @@ -16,4 +17,4 @@ jobs: with: # pr number message: | - :wave: Documentation changes in this PR can be previewed [here](https://docs.page/invertase/globe~${{ github.event.pull_request.number }}). + :books: Documentation changes in this PR can be previewed [here](https://docs.page/invertase/globe~${{ github.event.pull_request.number }}). diff --git a/.github/workflows/spell_checker.yml b/.github/workflows/spell_checker.yml index 430f038e..c8e9e203 100644 --- a/.github/workflows/spell_checker.yml +++ b/.github/workflows/spell_checker.yml @@ -6,11 +6,19 @@ on: - main pull_request: +# jobs: +# test: +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v3 +# - run: npm -g install cspell +# - run: ./scripts/cspell-run.sh +# - run: ./scripts/cspell-verify.sh jobs: - test: + check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - run: npm -g install cspell - - run: ./scripts/cspell-run.sh - - run: ./scripts/cspell-verify.sh + - uses: actions/checkout@v4 + - uses: streetsidesoftware/cspell-action@v5 + with: + config: ".github/cspell.json"