compile xmtp_id
and xmtp_mls
to wasm32
#656
Workflow file for this run
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: Test Node Bindings | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# only run tests when related changes are made | |
paths: | |
- ".github/workflows/test-node-bindings.yml" | |
- "bindings_node/**" | |
- "dev/**" | |
- "mls_validation_service/**" | |
- "xmtp_api_grpc/**" | |
- "xmtp_cryptography/**" | |
- "xmtp_id/**" | |
- "xmtp_mls/**" | |
- "xmtp_proto/**" | |
- "xmtp_v2/**" | |
- ".node-version" | |
- "Cargo.toml" | |
- "Cargo.lock" | |
- "rust-toolchain" | |
jobs: | |
test: | |
name: Test | |
runs-on: warp-ubuntu-latest-x64-16x | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update rust toolchains | |
run: rustup update | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
. | |
bindings_node | |
- name: Start Docker containers | |
run: dev/up | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
cache-dependency-path: "bindings_node/yarn.lock" | |
cache: "yarn" | |
env: | |
SKIP_YARN_COREPACK_CHECK: "1" | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install dependencies | |
working-directory: bindings_node | |
run: | | |
yarn | |
- name: Build release | |
working-directory: bindings_node | |
run: | | |
yarn build:release | |
- name: Run tests | |
working-directory: bindings_node | |
run: | | |
yarn test |