Skip to content

docs: document Bug 2d double-free fix in DeleteAllSessions #231

docs: document Bug 2d double-free fix in DeleteAllSessions

docs: document Bug 2d double-free fix in DeleteAllSessions #231

Workflow file for this run

name: Memory Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
# Comprehensive memory tests - all platforms and Node versions
memory-tests:
strategy:
fail-fast: false # Don't cancel other jobs if one fails
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [20, 22, 23, 24]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Linux dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y valgrind build-essential clang
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build native and javascript bundle
run: npm run build
- name: Run comprehensive memory tests
run: npm run memory:check
- name: Upload memory test artifacts
if: always()
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: memory-test-logs-${{ matrix.os }}-${{ matrix.node-version }}
path: |
asan-test.log
valgrind.log
asan-output.log
mem-job-logs.txt
if-no-files-found: ignore