build(deps): bump the all group in /frontend with 15 updates #407
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: check | |
permissions: | |
contents: read | |
on: [push, pull_request] | |
jobs: | |
check-x86: | |
runs-on: ubuntu-latest | |
name: check-x86 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo check | |
- run: cargo test | |
check-wasm: | |
runs-on: ubuntu-latest | |
name: check-wasm | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: wasm32-unknown-unknown | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: frontend | |
- run: cargo check --manifest-path=frontend/Cargo.toml --target=wasm32-unknown-unknown |