Skip to content

Commit a5e9817

Browse files
authored
ci: add missing workflows (#7)
* ci: add missing workflows * add allowed
1 parent ccce90b commit a5e9817

File tree

4 files changed

+45
-3
lines changed

4 files changed

+45
-3
lines changed

.github/cspell.json

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

.github/workflows/ci.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: ci
2+
3+
concurrency:
4+
group: ${{ github.workflow }}-${{ github.ref }}
5+
cancel-in-progress: true
6+
7+
on:
8+
pull_request:
9+
branches:
10+
- main
11+
12+
jobs:
13+
semantic-pull-request:
14+
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
15+
16+
spell-check:
17+
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1
18+
with:
19+
includes: "**/*.md"
20+
modified_files_only: false

.github/workflows/hooks.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,6 @@ on:
1717
- "hooks/**"
1818

1919
jobs:
20-
semantic-pull-request:
21-
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
22-
2320
build:
2421
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/dart_package.yml@v1
2522
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
hooks/build
22
hooks/coverage
33
hooks/.dart_tool
4+
.idea/

0 commit comments

Comments
 (0)