Skip to content

fix publishing

fix publishing #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags-ignore:
- "**"
pull_request:
branches:
- main
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml') }}
- run: cargo test
- name: Setup pnpm
uses: pnpm/action-setup@v2.4.0
with:
version: 8.14.1
run_install: true
- name: Add Rust target
run: rustup target add wasm32-unknown-unknown
- run: pnpm build
- run: pnpm test