Skip to content

Commit 5654f1b

Browse files
[Spellcheck] Add tests for ignore rules (Resolves #2573) (#2574)
1 parent b35175e commit 5654f1b

File tree

4 files changed

+413
-132
lines changed

4 files changed

+413
-132
lines changed

.github/workflows/pr_validation.yaml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,26 @@ jobs:
144144
# Run all tests
145145
- run: flutter test
146146

147+
test_super_editor_spellcheck:
148+
runs-on: ubuntu-latest
149+
defaults:
150+
run:
151+
working-directory: ./super_editor_spellcheck
152+
steps:
153+
# Checkout the PR branch
154+
- uses: actions/checkout@v3
155+
156+
# Setup Flutter environment
157+
- uses: subosito/flutter-action@v2
158+
with:
159+
channel: "master"
160+
161+
# Download all the packages that the app uses
162+
- run: flutter pub get
163+
164+
# Run all tests
165+
- run: flutter test
166+
147167
analyze_super_keyboard:
148168
runs-on: ubuntu-latest
149169
defaults:
@@ -184,7 +204,6 @@ jobs:
184204
# Run all tests
185205
- run: flutter test
186206

187-
188207
analyze_super_text_layout:
189208
runs-on: ubuntu-latest
190209
defaults:
@@ -288,4 +307,4 @@ jobs:
288307
- run: dart pub get
289308

290309
# Run all tests
291-
- run: dart test
310+
- run: dart test

0 commit comments

Comments
 (0)