diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5b548a8d..1c983757 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,9 @@ jobs: components: clippy, rustfmt - name: Lint files - run: make lint + run: | + make lint + make lint-web sanitize: uses: ./.github/workflows/sanitize.yml diff --git a/Makefile b/Makefile index 83c2f814..02335219 100644 --- a/Makefile +++ b/Makefile @@ -109,6 +109,10 @@ lint: cargo +nightly fmt --all --check cargo +nightly clippy --workspace --all-targets -- -D warnings +lint-web: + npm --prefix lib/binding_web ci + npm --prefix lib/binding_web run lint + format: cargo +nightly fmt --all