Skip to content

rs 0.31.1 upgrade

rs 0.31.1 upgrade #82

Workflow file for this run

name: Test
on: pull_request
jobs:
test-js:
runs-on: ubuntu-latest
name: "${{ matrix.os }} node:${{ matrix.node }}"
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
node: ["16", "17", "18"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: yarn
cache-dependency-path: yarn.lock
- name: Install latest Rust nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-11-24
override: true
components: rustfmt, clippy
- run: yarn --version
- name: Install Node Dependencies
run: yarn install
- name: Build Binary
run: yarn build:debug
- name: Run Linting
run: yarn lint:ts
- name: Run Tests
run: yarn test
- name: Build JS
run: yarn build:ts