-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run doc tests in CI on wasm target #2528
Conversation
Visit the preview URL for this PR (updated for commit 8a3c4e3): https://yew-rs--pr2528-wasm-doc-tests-e2r64ek0.web.app (expires Fri, 25 Mar 2022 16:04:54 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 |
@@ -18,7 +18,7 @@ wasm-bindgen-futures = "0.4" | |||
weblog = "0.3.0" | |||
yew = { path = "../../packages/yew/", features = ["ssr"] } | |||
yew-router = { path = "../../packages/yew-router/" } | |||
tokio = { version = "1.15.0", features = ["full"] } | |||
#tokio = { version = "1.15.0", features = ["full"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this commented out? Shouldn't it be used in this example? If its not used maybe just remove the line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Testing purposes. I was figuring out why CI is failing.
Closing this until trunk-rs/trunk#20 is a thing. Using wasm-bindgen-cli directly is very finicky |
Description
Run doc tests in CI on wasm32-unknown-unknown target and on nightly toolchain
Fixes #2503
Limitations