mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
ci: Fix script name in gh workflow (#10619)
This commit is contained in:
parent
c5c903ba8b
commit
1e08f444c9
4
.github/workflows/benchmark-nightly.yml
vendored
4
.github/workflows/benchmark-nightly.yml
vendored
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue