Skip to content

fix: fixed test workflow #3

fix: fixed test workflow

fix: fixed test workflow #3

Workflow file for this run

name: Test Suite
on:
push:
branches:
- develop
pull_request_target:
jobs:
test_rust:
name: Test Rust
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout source
- uses: actions/cache@v3
name: Setup Cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
simd-target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run Rust tests
run: |
cargo install grcov
npm install -g mocha
cargo clean
cargo test
grcov . --binary-path ./target/debug -s . -t lcov --branch -o ./coverage.lcov
env:
RUSTFLAGS: -Cinstrument-coverage
LLVM_PROFILE_FILE: "%p-%m.profraw"
- name: Publish coverage report
uses: codecov/codecov-action@v3
with:
file: ./coverage.lcov
test_node:
name: Test (Node.JS ${{ matrix.node_version }})
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [14, 18, 20]
fail-fast: false
steps:
- uses: actions/checkout@v4
name: Checkout source
- uses: actions/cache@v3
name: Setup Cache
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
simd-target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Get npm cache directory
id: npm-cache-dir
shell: bash
run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
- uses: actions/cache@v3
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- uses: actions/setup-node@v3
name: Setup Node.JS
with:
node-version: ${{ matrix.node_version }}
- name: Run WASM tests
run: |
cargo install wasm-pack
cargo clean
npm install -g mocha
npm ci
npm test