Skip to content

Commit 1ee41f6

Browse files
authored
ci: add spell check workflow (#362)
1 parent 1c940e4 commit 1ee41f6

File tree

8 files changed

+33
-6
lines changed

8 files changed

+33
-6
lines changed

.github/cspell.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.2",
3+
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
4+
"dictionaries": ["vgv_allowed", "vgv_forbidden"],
5+
"dictionaryDefinitions": [
6+
{
7+
"name": "vgv_allowed",
8+
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt",
9+
"description": "Allowed VGV Spellings"
10+
},
11+
{
12+
"name": "vgv_forbidden",
13+
"path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt",
14+
"description": "Forbidden VGV Spellings"
15+
}
16+
],
17+
"useGitignore": true,
18+
"words": ["doctl", "endtemplate", "hotreload", "intelli", "sigint"]
19+
}

.github/workflows/main.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ jobs:
99
build:
1010
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
1111

12+
spell-check:
13+
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
14+
with:
15+
includes: |
16+
**/*.md
17+
modified_files_only: false
18+
verbose: true
19+
1220
pana:
1321
runs-on: ubuntu-latest
1422
steps:

bricks/create_dart_frog/brick.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ environment:
88
vars:
99
name:
1010
type: string
11-
description: Your applicatiton name
11+
description: Your application name
1212
default: example
1313
prompt: What is your app name?

docs/docs/deploy/aws-app-runner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ docker build build \
6868

6969
- `[REGION]`: The region you want to deploy to (ex: us-west-1)
7070
- `[AWS_ACCOUNT_ID]`: The id of the account you're deploying to, without dashes (can be found in the top right menu)
71-
- `[REPOSITORY_NAME]`: The name of the repository you created eariler
71+
- `[REPOSITORY_NAME]`: The name of the repository you created earlier
7272
- `[IMAGE_TAG]`: A name given to this image to identify it in the repository
7373

7474
This command will build the Docker image on your computer and can take a few seconds to a few minutes.

docs/docs/deploy/digital-ocean-app-platform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ docker build build \
7979
--tag registry.digitalocean.com/[REGISTRY]/[IMAGE_NAME]
8080
```
8181

82-
- `[REGISTRY]`: The name of the registry you created eariler
82+
- `[REGISTRY]`: The name of the registry you created earlier
8383
- `[IMAGE_NAME]`: A name given to this image to identify it in the registry
8484

8585
This command will build the Docker image on your machine and can take up to a few minutes.

docs/docs/deploy/google-cloud-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Running this command will do three things:
6363
3. Congratulations! 🎉 You have successfully built and deployed your API to Cloud Run. You can now access your API at the Service URL that is printed in the last line of output.
6464

6565
:::note
66-
If you have not already enabled the nessesary Google Cloud APIs to deploy your API, `gcloud` can enable them for you. Just select `Y` when prompted.
66+
If you have not already enabled the necessary Google Cloud APIs to deploy your API, `gcloud` can enable them for you. Just select `Y` when prompted.
6767
:::
6868

6969
:::tip

packages/dart_frog/lib/src/router.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class Router {
4646
///
4747
/// If [verb] is `GET` the [handler] will also be called for `HEAD` requests
4848
/// matching [route]. This is because handling `GET` requests without handling
49-
/// `HEAD` is always wrong. To explicitely implement a `HEAD` handler it must
49+
/// `HEAD` is always wrong. To explicitly implement a `HEAD` handler it must
5050
/// be registered before the `GET` handler.
5151
void add(String verb, String route, Function handler) {
5252
if (!isHttpMethod(verb)) {

packages/dart_frog_cli/lib/src/commands/create/templates/create_dart_frog_bundle.dart

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)