mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-28 09:25:36 +00:00
0660b1a1be
* fix: upgrade wasm-bindgen to fix str free err * chore: fix ci
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
name: Test All
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-14
|
|
if: github.event.pull_request.draft == false
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: jetli/wasm-pack-action@v0.4.0
|
|
with:
|
|
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
|
|
version: "latest"
|
|
- uses: denoland/setup-deno@v1
|
|
with:
|
|
deno-version: v1.x
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
- uses: pnpm/action-setup@v2
|
|
with:
|
|
version: 8
|
|
- name: Install nextest
|
|
uses: taiki-e/install-action@v1
|
|
with:
|
|
tool: nextest
|
|
|
|
- run: rustup toolchain install stable --profile minimal
|
|
- run: rustup target add wasm32-unknown-unknown
|
|
- uses: jetli/wasm-bindgen-action@v0.2.0
|
|
with:
|
|
version: "0.2.92"
|
|
- uses: Swatinem/rust-cache@v2
|
|
- name: Build
|
|
run: cargo build --verbose
|
|
- name: Run rust tests
|
|
run: deno task test
|
|
- name: Run wasm tests
|
|
run: deno task test-wasm
|