Skip to content

Commit 630757e

Browse files
committed
chore(ci): add spell check and pana score
1 parent 5a8e37e commit 630757e

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
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": []
19+
}

.github/workflows/main.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: build
22

3+
concurrency:
4+
group: $-$
5+
cancel-in-progress: true
6+
37
on:
48
pull_request:
59
branches:
@@ -9,6 +13,19 @@ on:
913
- main
1014

1115
jobs:
16+
semantic-pull-request:
17+
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
18+
19+
spell-check:
20+
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
21+
with:
22+
includes: |
23+
**/*.md
24+
modified_files_only: false
25+
26+
pana_score:
27+
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/pana.yml@v1
28+
1229
build:
1330
runs-on: ubuntu-latest
1431

@@ -20,7 +37,7 @@ jobs:
2037
uses: subosito/flutter-action@v2
2138
with:
2239
channel: stable
23-
40+
2441
- name: 🚧 Install Dependencies
2542
run: flutter pub get
2643

0 commit comments

Comments
 (0)