Improve check for extra statement #322
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: Rust Build | |
on: | |
push: {} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
run: | | |
rustup toolchain install stable | |
rustup default stable | |
- name: Build | |
run: cargo build --release | |
- run: cargo install wasm-pack | |
- run: wasm-pack build --target nodejs | |
- run: make bench | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- run: make smoketest |