File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -313,13 +313,6 @@ jobs:
313
313
runs-on : ubuntu-latest
314
314
steps :
315
315
- uses : actions/checkout@v4
316
- - name : install extra dictionaries
317
- run : npm install @cspell/dict-en_us @cspell/dict-cpp @cspell/dict-python @cspell/dict-rust @cspell/dict-win32 @cspell/dict-shell
318
- - name : spell checker
319
- uses : streetsidesoftware/cspell-action@v6
320
- with :
321
- files : ' **/*.rs'
322
- incremental_files_only : true
323
316
- uses : dtolnay/rust-toolchain@stable
324
317
with :
325
318
components : rustfmt, clippy
@@ -339,6 +332,14 @@ jobs:
339
332
- name : check wasm code with prettier
340
333
# prettier doesn't handle ignore files very well: https://github.com/prettier/prettier/issues/8506
341
334
run : cd wasm && git ls-files -z | xargs -0 prettier --check -u
335
+ # Keep cspell check as the last step. This is optional test.
336
+ - name : install extra dictionaries
337
+ run : npm install @cspell/dict-en_us @cspell/dict-cpp @cspell/dict-python @cspell/dict-rust @cspell/dict-win32 @cspell/dict-shell
338
+ - name : spell checker
339
+ uses : streetsidesoftware/cspell-action@v6
340
+ with :
341
+ files : ' **/*.rs'
342
+ incremental_files_only : true
342
343
343
344
miri :
344
345
if : ${{ !contains(github.event.pull_request.labels.*.name, 'skip:ci') }}
You can’t perform that action at this time.
0 commit comments