Skip to content

NIGHTLY:EVM:PERFORMANCE:TESTING #8

NIGHTLY:EVM:PERFORMANCE:TESTING

NIGHTLY:EVM:PERFORMANCE:TESTING #8

name: "NIGHTLY:EVM:PERFORMANCE:TESTING"
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # Runs every day at midnight UTC
jobs:
nightly_evm_api_performance_test:
name: "NIGHTLY:EVM:API:PERFORMANCE:TEST"
runs-on: "buildjet-16vcpu-ubuntu-2204"
steps:
- uses: actions/checkout@v4
- name: "START:LOCAL:NET"
run: |
make start-e2e-test
- name: "EXECUTE:LOADTESTS"
uses: artilleryio/action-cli@v1
with:
command: run .github/actions/performance-tests/art.yaml --output ./report.json
- name: "GENERATE:REPORT"
uses: artilleryio/action-cli@v1
with:
command: report report.json --output artillery_report.html
- name: "UPLOAD:REPORT"
uses: actions/upload-artifact@v3
if: success()
with:
name: artillery-report
path: ./artillery_report.html