cleanup #332
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: Tests | |
on: [push] | |
jobs: | |
test: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install wasm-bindgen-cli | |
run: cargo install wasm-bindgen-cli | |
- name: install wasm-unknown-unknown target | |
run: rustup target add wasm32-unknown-unknown | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: install dependencies | |
run: pnpm install | |
- name: Build opaque | |
run: pnpm build | |
- name: tests | |
run: pnpm test |