Scale Test #149
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |