Skip to content

Bump the other group with 2 updates (#65) #119

Bump the other group with 2 updates (#65)

Bump the other group with 2 updates (#65) #119

Workflow file for this run

name: Build and Test
on:
push:
branches:
- master
pull_request:
jobs:
node-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
- name: Install Wasm Pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-node@v4
with:
node-version: "20"
- name: Build Rust wasm test helper
run: cd tests/rust-arrow-ffi && yarn build && cd ../../
- name: Install dev dependencies
run: yarn
- name: Run Node tests
run: yarn test