We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13cf1c8 commit 39b30b5Copy full SHA for 39b30b5
.github/workflows/all_components.yml
@@ -56,7 +56,14 @@ jobs:
56
- name: Install CLI
57
run: cargo install dioxus-cli --git https://github.com/DioxusLabs/dioxus
58
- name: Add components and check
59
- run: cd test-harness && dx components add --all --path .. --force && cargo check --all-features
+ run: |
60
+ cd test-harness
61
+ # Add dependencies manually; TODO: remove this once dx components supports local dependencies
62
+ dx components add calendar,popover --path ..
63
+ # Add all components
64
+ dx components add --all --path .. --force
65
+ # Make sure it still builds
66
+ cargo check --all-features
67
add-each-component:
68
if: github.event.pull_request.draft == false
69
name: Add Each Components
0 commit comments