Chore(deps): Bump the cargo-dependencies group in /wasm_module with 14 updates #11
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: "Test: Lint Rust" | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
paths: | |
- wasm_module/** | |
push: | |
branches: | |
- main | |
paths: | |
- wasm_module/** | |
workflow_dispatch: | |
env: | |
NODE_VERSION: 18 | |
jobs: | |
testRust: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up PNPM | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Cache Rust | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: wasm_module | |
- name: Check Rust with cargo | |
run: pnpm wasmCheck |