Update script.js #6
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: Basic Workflow | |
on: [push] | |
jobs: | |
k6_local_test: | |
name: k6 local test run - basic example | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Run local k6 test | |
uses: grafana/[email protected] | |
with: | |
filename: ./script.js | |
flags: --out json=index.json --summary-export index.html | |
- name: Upload performance test results | |
uses: actions/[email protected] | |
with: | |
name: k6-report | |
path: index.json |