Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,15 @@ jobs:
- name: Test crw-server without the cdp feature
run: cargo test -p crw-server

# `camoufox` and `cloak` are default-off in every crate, so
# `cargo test --workspace` never compiles those tiers or their tests.
# Without this step the whole camoufox module, including its
# wall/challenge classification, is invisible to the gate. `cdp` is
# included because the tests that cover how these tiers interact with
# the ladder are gated on it too.
- name: Test the camoufox and cloak tiers
run: cargo test -p crw-renderer --features cdp,camoufox,cloak

sdk-ts:
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down
Loading