Fix sketch_widget
requiring a dependency on the whiskers-widgets
…
#406
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wasm CI | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
pull_request: | |
branches: | |
- master | |
- release/* | |
jobs: | |
check: | |
name: "clippy, build" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: moonrepo/setup-rust@v1 | |
with: | |
targets: wasm32-unknown-unknown | |
components: clippy | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: just | |
- uses: jetli/[email protected] | |
with: | |
version: 0.2.99 | |
- run: just clippy-wasm | |
- run: just web-build |