Skip to content

Update all dependencies (incl JS) and make use of thread_local #69

Update all dependencies (incl JS) and make use of thread_local

Update all dependencies (incl JS) and make use of thread_local #69

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install npm deps
working-directory: ./test
run: npm ci
# For some reason isntalling the rust toolchain via wasm-pack leads to CI failures.
# This check will read the top level rustup-toolchain.toml and install the required stuff.
- name: Trigger toolchain installation
working-directory: ./test
run: cargo check
- name: Run tests
working-directory: ./test
run: npm test