Skip to content

chore(deps-dev): bump @types/node from 24.0.4 to 24.0.10 #95

chore(deps-dev): bump @types/node from 24.0.4 to 24.0.10

chore(deps-dev): bump @types/node from 24.0.4 to 24.0.10 #95

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:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [20, 22, 23, 24]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.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@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
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 check:memory
- name: Upload memory test artifacts
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
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