Skip to content

Bump to 0.4.2 (#117) #196

Bump to 0.4.2 (#117)

Bump to 0.4.2 (#117) #196

Workflow file for this run

name: Build and Test
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
node-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Volta
uses: volta-cli/action@v4
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ".yarn/cache"
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- 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
run: yarn install
- name: Prettier check
run: yarn fmt:check
- name: Type check
run: yarn typecheck
- name: Test
run: yarn test