fix(ci): fix YAML syntax error in test.yml
Some checks failed
Test / rust-fmt-check (pull_request) Successful in 1m53s
Test / frontend-typecheck (pull_request) Successful in 1m52s
Test / frontend-tests (pull_request) Failing after 1m50s
Test / rust-clippy (pull_request) Successful in 3m13s
Test / rust-tests (pull_request) Successful in 6m30s
PR Review Automation / review (pull_request) Successful in 8m56s

Quote shell:: argument to fix YAML parsing error at line 121.
The double colon was being interpreted as a YAML mapping value.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Shaun Arman 2026-06-05 09:01:16 -05:00
parent 496177b9ec
commit b0961e7a60

View File

@ -118,7 +118,7 @@ jobs:
- run: cargo test --manifest-path src-tauri/Cargo.toml -- --test-threads=1
- name: Run shell module tests
run: cargo test --manifest-path src-tauri/Cargo.toml shell:: -- --test-threads=1
run: 'cargo test --manifest-path src-tauri/Cargo.toml "shell::" -- --test-threads=1'
frontend-typecheck:
runs-on: ubuntu-latest