Skip WASM build for tests and docs (#10)

This commit is contained in:
Przemek Rzad
2024-07-23 14:51:49 +02:00
committed by GitHub
parent 91e66fc7ea
commit ce9fbe59b7
+2 -2
View File
@@ -48,11 +48,11 @@ jobs:
timeout-minutes: 30
- name: Run the tests
run: cargo test
run: SKIP_WASM_BUILD=1 cargo test
timeout-minutes: 15
- name: Build the docs
run: cargo doc --all-features --workspace --no-deps
run: SKIP_WASM_BUILD=1 cargo doc --workspace --no-deps
timeout-minutes: 15
build-docker: