Add make check-wasm (#2796)

This commit is contained in:
Przemyslaw Hugh Kaznowski 2023-10-08 01:48:00 +01:00 committed by GitHub
parent e6a8f598fe
commit 9594683129
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -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

View file

@ -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"