Skip to content

build(deps-dev): bump @typescript-eslint/parser from 8.36.0 to 8.46.0 #153

build(deps-dev): bump @typescript-eslint/parser from 8.36.0 to 8.46.0

build(deps-dev): bump @typescript-eslint/parser from 8.36.0 to 8.46.0 #153

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@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.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 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