Fixes wasm-bindgen CI (#44) #143
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 Suite" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: cargo-bins/[email protected] | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- run: | | |
# For some reason the cached binaries don't end up on the path | |
# so we need to --force here | |
cargo binstall -y --force just wasm-bindgen-cli wasm-opt | |
just ci |