Skip to content

feat: Add static library support for node napi module and C ABI. #45

feat: Add static library support for node napi module and C ABI.

feat: Add static library support for node napi module and C ABI. #45

Workflow file for this run

name: tests
on:
push:
branches: [main]
paths:
- 'tests/**'
- 'stun/**'
- 'turn/**'
- 'turn-server/**'
- 'Cargo.toml'
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Run tests
run: cargo test