chore(deps): update thiserror requirement from 1.0.63 to 2.0.3 in /crates/dwn-rs-stores #367
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
rust-tests: | |
name: Rust tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust Stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: llvm-tools-preview | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
- name: Install cargo-make | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
toolchain: stable | |
- name: Run CI | |
uses: actions-rs/cargo@v1 | |
env: | |
CARGO_MAKE_RUN_CODECOV: true | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
super_secret: ${{ secrets.CODECOV_TOKEN }} | |
command: make | |
args: --no-workspace workspace-ci-flow | |
toolchain: stable | |
wasm-build: | |
name: "WASM (Node build)" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
- name: Install cargo-make (stable) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
- name: Build WASM library | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: build-wasm-no-opt | |
wasm-tests: | |
name: "WASM (node tests)" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
- name: Install cargo-make (stable) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Test WASM library against dwn-sdk-js | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: test-store-js | |
browser-build: | |
name: "WASM (browser build)" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
- name: Install cargo-make (stable) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
- name: Build WASM library | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: build-wasm-browser-no-opt | |
browser-tests: | |
name: "WASM (browser tests)" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: true | |
- name: Install cargo-make (stable) | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: --debug cargo-make | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Test WASM library against dwn-sdk-js | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: test-store-js-browser |