Add make check-wasm (#2796)
This commit is contained in:
parent
e6a8f598fe
commit
9594683129
2 changed files with 8 additions and 0 deletions
4
Makefile
4
Makefile
|
@ -29,6 +29,10 @@ test: check-deps
|
|||
check: check-deps
|
||||
cargo make check
|
||||
|
||||
.PHONY: check-wasm
|
||||
check-wasm: check-deps
|
||||
cargo make check-wasm
|
||||
|
||||
.PHONY: clean
|
||||
clean: check-deps
|
||||
cargo make clean
|
||||
|
|
|
@ -54,6 +54,10 @@ args = ["clippy", "--all-targets", "--all-features", "--", "-D", "warnings"]
|
|||
category = "LOCAL USAGE"
|
||||
dependencies = ["cargo-check", "cargo-fmt", "cargo-fmt-unlinked", "cargo-clippy"]
|
||||
|
||||
[tasks.check-wasm]
|
||||
category = "LOCAL USAGE"
|
||||
dependencies = ["ci-check-wasm"]
|
||||
|
||||
# Clean
|
||||
[tasks.clean]
|
||||
category = "LOCAL USAGE"
|
||||
|
|
Loading…
Reference in a new issue