SDK Load Test #5
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: SDK Load Test | |
on: | |
# push: | |
# branches: [ "deploy-story-contracts" ] | |
# pull_request: | |
# branches: [ "main" ] | |
workflow_dispatch: | |
inputs: | |
running_amounts: | |
description: 'devnet01 is storyprotocol devnet; devnet02 is 57blocks devnet; testnet is storyprotocol partner-testnet' | |
required: false | |
default: 'devnet01' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [21.x] | |
steps: | |
- name: Check Out Repository Code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
- name: Install dependencies | |
run: | | |
npm install | |
npm install --save @story-protocol/core-sdk [email protected] | |
- name: Run Load Test | |
run: | | |
npx ts-node ./sdk_load_test/load_create_ip_with_existing_collection.ts > >(tee ./test_report/load_test_out.log) 2>&1 | |
continue-on-error: true | |
- name: Deploy report to GitHub Pages | |
if: always() | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./test_report | |
publish_branch: gh-pages | |
keep_files: true | |
- name: Upload Test Report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: hub-load-test-report | |
path: | | |
./test_report/load_test_out.log |