fix(frontend,devops): error boundaries & sentry context, code splitting, XSS sanitization, and commit hygiene (#1090, #1091, #1092, #1093) #3
Workflow file for this run
This file contains hidden or 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: End-to-End Stress & Chaos Engineering Benchmark Suite | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| stress-benchmark: | |
| name: Stress & Chaos Load Benchmark Suite | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'npm' | |
| - name: Run End-to-End Stress & Chaos Benchmark Suite | |
| run: | | |
| node tests/stress/load_stress_suite.js | |
| - name: Upload Benchmark Report Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: stress-benchmark-report | |
| path: tests/stress/stress-benchmark-report.json |