Skip to content

Fix version in logging #583

Fix version in logging

Fix version in logging #583

Workflow file for this run

name: Stress Test
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
push:
branches: [main]
workflow_dispatch:
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
stress:
name: Run Stress Tests
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Use Node.js 24
uses: actions/setup-node@v6
with:
node-version: 24
cache: 'pnpm'
- name: Setup RocksDB cache
uses: actions/cache@v4
with:
path: deps/rocksdb
key: stress-rocksdb-${{ hashFiles('package.json') }}
restore-keys: |
stress-rocksdb-
- name: Install dependencies
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: pnpm install --ignore-scripts --no-frozen-lockfile
- name: Build
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: pnpm build
- name: Run stress tests
run: pnpm test:stress