Skip to content

Commit

Permalink
feat: subset type graph for JSR dependencies (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Jan 8, 2024
1 parent e0757d9 commit 9177fe9
Show file tree
Hide file tree
Showing 90 changed files with 8,803 additions and 780 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -44,14 +44,19 @@ jobs:
- name: Lint
if: contains(matrix.os, 'ubuntu')
run: |
cargo clippy --locked --release --all-features --all-targets -- -D clippy::all
cargo clippy --locked --all-features --all-targets -- -D clippy::all
deno lint
- name: Cargo Build
run: cargo build --locked --release --all-features --all-targets
run: cargo build --locked --all-features --all-targets

- name: Cargo Test
run: cargo test --locked --release --all-features --all-targets
run: cargo test --locked --all-features --all-targets

# ensure we build with no default features, but only bother testing on linux
- name: Cargo Build (no-default-features)
if: contains(matrix.os, 'ubuntu')
run: cargo build --locked --no-default-features

- name: Build Wasm
run: deno task build
Expand Down

0 comments on commit 9177fe9

Please sign in to comment.