refactor: use @std/tar
in build
task and Deno 2 in CI
#405
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
jobs: | |
rust: | |
name: wasmbuild-${{ matrix.os }} | |
if: | | |
github.event_name == 'push' || | |
!startsWith(github.event.pull_request.head.label, 'denoland:') | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: read | |
id-token: write | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-2019] | |
steps: | |
- name: clone repository | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dsherret/rust-toolchain-file@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Install deno | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- name: Check fmt | |
if: contains(matrix.os, 'ubuntu') | |
run: deno fmt --check && cargo fmt -- --check | |
- name: Check lint | |
if: contains(matrix.os, 'ubuntu') | |
run: deno lint && cargo clippy | |
- name: Check Wasm up-to-date | |
run: deno task build --check | |
- name: Test | |
run: deno task test | |
- name: Publish on tag | |
if: contains(matrix.os, 'ubuntu') | |
run: deno run -A jsr:@david/[email protected] --allow-dirty |