ci: Route PR CI e2e to dedicated Currents project (#31722)

Co-authored-by: n8n-cat-bot[bot] <n8n-cat-bot[bot]@users.noreply.github.com>
This commit is contained in:
n8n-cat-bot[bot] 2026-06-04 11:32:33 +01:00 committed by GitHub
parent 790afbcf3d
commit 203e816b82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 5 additions and 2 deletions

View File

@ -57,6 +57,7 @@ jobs:
pre-generated-matrix: ${{ needs.generate-matrix.outputs.matrix }}
artifact-prefix: coverage
build-variant: coverage
currents-project-id: 'LRxcNt'
secrets: inherit
aggregate:

View File

@ -42,4 +42,5 @@ jobs:
runner: blacksmith-8vcpu-ubuntu-2204
timeout-minutes: 120
artifact-prefix: 'benchmark-${{ matrix.lane }}'
currents-project-id: 'LRxcNt'
secrets: inherit

View File

@ -35,7 +35,7 @@ on:
currents-project-id:
description: 'Currents project ID for reporting'
required: false
default: 'LRxcNt'
default: 'nHHLA5'
type: string
pre-generated-matrix:
description: 'Pre-generated shard matrix JSON. Defaults to 1 shard; multi-shard callers pass their own.'

View File

@ -30,6 +30,7 @@ jobs:
pre-generated-matrix: '[{"shard":1},{"shard":2},{"shard":3},{"shard":4},{"shard":5},{"shard":6},{"shard":7},{"shard":8},{"shard":9},{"shard":10},{"shard":11},{"shard":12},{"shard":13},{"shard":14},{"shard":15},{"shard":16}]'
n8n-env: '{"N8N_EXPRESSION_ENGINE":"vm"}'
artifact-prefix: vm-expressions
currents-project-id: 'LRxcNt'
secrets: inherit
notify-on-failure:

View File

@ -2,7 +2,7 @@ import type { CurrentsConfig } from '@currents/playwright';
const config: CurrentsConfig = {
recordKey: process.env.CURRENTS_RECORD_KEY ?? '',
projectId: process.env.CURRENTS_PROJECT_ID ?? 'LRxcNt',
projectId: process.env.CURRENTS_PROJECT_ID ?? 'nHHLA5',
// Coverage is collected via browser-native V8 (fixtures/v8-coverage.ts +
// monocart-coverage-reports), not Currents' istanbul fixture.
};