Skip to content

chore(deps): bump trufflesecurity/trufflehog from 3.92.3 to 3.92.4 in the actions group #214

chore(deps): bump trufflesecurity/trufflehog from 3.92.3 to 3.92.4 in the actions group

chore(deps): bump trufflesecurity/trufflehog from 3.92.3 to 3.92.4 in the actions group #214

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- 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@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.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