forked from AppFlowy-IO/AppFlowy-Collab
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: collab plugin wasm (AppFlowy-IO#150)
* 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
Showing
49 changed files
with
1,425 additions
and
166 deletions.
There are no files selected for viewing
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
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 |
Oops, something went wrong.