-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (79 loc) · 2.73 KB
/
tests.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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 --force grcov
npm install -g mocha
npm ci
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: [16, 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 }}-wasm-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 --force
cargo clean
npm install -g mocha
npm ci
npm test