Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update dependencies #423

Merged
merged 4 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
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
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