ci: Fix script name in gh workflow (#10619)

This commit is contained in:
Tomi Turtiainen 2024-08-30 10:48:34 +03:00 committed by GitHub
parent c5c903ba8b
commit 1e08f444c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -60,10 +60,10 @@ jobs:
- name: Run the benchmark with debug logging - name: Run the benchmark with debug logging
if: github.event.inputs.debug == 'true' if: github.event.inputs.debug == 'true'
run: pnpm run-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }} --debug run: pnpm benchmark-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }} --debug
working-directory: packages/@n8n/benchmark working-directory: packages/@n8n/benchmark
- name: Run the benchmark - name: Run the benchmark
if: github.event.inputs.debug != 'true' if: github.event.inputs.debug != 'true'
run: pnpm run-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }} run: pnpm benchmark-in-cloud --n8nTag ${{ inputs.n8n_tag || 'nightly' }} --benchmarkTag ${{ inputs.benchmark_tag || 'latest' }}
working-directory: packages/@n8n/benchmark working-directory: packages/@n8n/benchmark

View file

@ -19,13 +19,13 @@ The benchmark suite consists of [benchmark scenarios](#benchmark-scenarios) and
### locally ### locally
```sh ```sh
pnpm run-locally pnpm benchmark-locally
``` ```
### In the cloud ### In the cloud
```sh ```sh
pnpm run-in-cloud pnpm benchmark-in-cloud
``` ```
## Running the `n8n-benchmark` cli ## Running the `n8n-benchmark` cli