Skip to content

docs: update README to reflect all 5 tools and improve discoverability #8

docs: update README to reflect all 5 tools and improve discoverability

docs: update README to reflect all 5 tools and improve discoverability #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
rust:
name: Rust tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
crates/mantis-wasm/target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: cargo test
run: cargo test
working-directory: crates/mantis-wasm
typescript:
name: TypeScript type-check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npx tsc --noEmit