Skip to content

Commit

Permalink
fix: update dependencies (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret authored Aug 13, 2024
1 parent 963a69c commit dbf13c1
Show file tree
Hide file tree
Showing 24 changed files with 723 additions and 571 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ jobs:
- uses: denoland/setup-deno@v1
with:
deno-version: ~1.x
- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
registry-url: 'https://registry.npmjs.org'

- name: Format
run: |
cargo fmt --all -- --check
deno fmt --check
- name: Lint
run: |
cargo clippy --all-targets --all-features --release
deno lint
- name: Lint (Cargo)
run: cargo clippy --all-targets --all-features --release

- name: Build
run: deno task build
- name: Lint (Deno)
run: deno lint
- name: Test (Rust)
run: cargo test --all-targets --all-features --release
- name: Test (Deno)
run: deno task test
- name: Publish on tag
run: deno run -A jsr:@david/[email protected].3
run: deno run -A jsr:@david/[email protected].4
Loading

0 comments on commit dbf13c1

Please sign in to comment.