Skip to content

Scale Test

Scale Test #139

Workflow file for this run

name: Scale Test
on:
push:
branches:
- 'main'
schedule:
- cron: '0 0 * * 0'
jobs:
test:
name: Scale Test
runs-on: ubuntu-latest
steps:
- name: Checkout Branch
uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v4
with:
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install Dependencies
run: npm install
- name: Scale Test
run: npm run test:scale
env:
NODE_OPTIONS: '--max-old-space-size=8192'