mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-05 20:17:13 +00:00
chore: fix ci test
This commit is contained in:
parent
e6c5cefe54
commit
03a6656413
2 changed files with 5 additions and 3 deletions
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
|
@ -36,5 +36,7 @@ jobs:
|
||||||
- uses: Swatinem/rust-cache@v2
|
- uses: Swatinem/rust-cache@v2
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose
|
run: cargo build --verbose
|
||||||
- name: Run tests
|
- name: Run rust tests
|
||||||
run: deno task test & deno task test-wasm
|
run: deno task test
|
||||||
|
- name: Run wasm tests
|
||||||
|
run: deno task test-wasm
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils",
|
"test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils",
|
||||||
"test-all": "deno task test & deno task quick-fuzz & deno task test-wasm",
|
"test-all": "deno task test & deno task quick-fuzz & deno task test-wasm",
|
||||||
"test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils",
|
"test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils",
|
||||||
"test-wasm": "cd crates/loro-wasm && deno task dev web && deno task test",
|
"test-wasm": "cd crates/loro-wasm && deno task release web && deno task test",
|
||||||
"check": "cargo clippy --all-features",
|
"check": "cargo clippy --all-features",
|
||||||
"quick-fuzz": "cd crates/loro-internal && deno task quick-fuzz",
|
"quick-fuzz": "cd crates/loro-internal && deno task quick-fuzz",
|
||||||
"fix": "cargo clippy --fix --features=test_utils",
|
"fix": "cargo clippy --fix --features=test_utils",
|
||||||
|
|
Loading…
Reference in a new issue