Skip to content

Commit

Permalink
feat: collab plugin wasm (AppFlowy-IO#150)
Browse files Browse the repository at this point in the history
* refactor: KVTransactionDB

* refactor: KVTransactionDB

* chore: add indexeddb

* test: add indexeddb test

* chore: impl stream

* chore: add test

* chore: add test

* ci: add test ci

* ci: add test ci
  • Loading branch information
appflowy authored Jan 21, 2024
1 parent 3c6b188 commit ae417ce
Show file tree
Hide file tree
Showing 49 changed files with 1,425 additions and 166 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/wasm_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Wasm Tests

on:
pull_request:

env:
RUST_TOOLCHAIN: "1.75"
CARGO_MAKE_VERSION: "0.36.6"

jobs:
test:
name: Run Wasm Tests
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true

- name: Install wasm-pack
uses: jetli/[email protected]
with:
version: latest

- uses: taiki-e/install-action@v2
with:
tool: cargo-make@${{ env.CARGO_MAKE_VERSION }}

- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Run Wasm Tests
run: cargo make wasm_test
Loading

0 comments on commit ae417ce

Please sign in to comment.