Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
Salakar committed Dec 11, 2023
1 parent d5ad387 commit ff07e41
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .github/.cspell/dart_dictionary.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Keywords/terms specific to the Dart/Flutter ecosystem
dartdoc
pubspec
unawaited
endtemplate
gitignores
writeln
Stderrs
1 change: 1 addition & 0 deletions .github/.cspell/people_usernames.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# Specific people's names and/or usernames
rroussel

Check warning on line 2 in .github/.cspell/people_usernames.txt

View workflow job for this annotation

GitHub Actions / check

Unknown word (rroussel)
5 changes: 3 additions & 2 deletions .github/workflows/docs_comment.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: docs_preview
on:
pull_request:
paths:
Expand All @@ -6,7 +7,7 @@ on:
# types: [opened]

jobs:
add_docs_link:
comment_link:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -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 }}).
18 changes: 13 additions & 5 deletions .github/workflows/spell_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit ff07e41

Please sign in to comment.