We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1e8be7e + 0cb9d29 commit 75b709fCopy full SHA for 75b709f
1 file changed
.github/workflows/ci.yml
@@ -59,5 +59,13 @@ jobs:
59
- name: Run cargo check
60
run: cargo check --workspace --all-targets
61
62
+ - name: Build example apps
63
+ run: |
64
+ for example in examples/*/; do
65
+ echo "Building $example..."
66
+ (cd "$example" && npm ci && npm run build)
67
+ cargo check --manifest-path "${example}src-tauri/Cargo.toml"
68
+ done
69
+
70
- name: Run TypeScript and Rust tests
71
run: npm test
0 commit comments