From bfc3f88a8b6a33caff8d43f1637d5bc0646d2e71 Mon Sep 17 00:00:00 2001 From: Declan Carroll Date: Wed, 29 Apr 2026 10:24:34 +0100 Subject: [PATCH] ci: Fix licensed test filter for fork PR e2e runs (#29451) Co-authored-by: Claude Opus 4.7 (1M context) --- .github/workflows/ci-pull-requests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-pull-requests.yml b/.github/workflows/ci-pull-requests.yml index 44adf4bbe06..3c24866b5ec 100644 --- a/.github/workflows/ci-pull-requests.yml +++ b/.github/workflows/ci-pull-requests.yml @@ -215,7 +215,7 @@ jobs: with: branch: ${{ needs.install-and-build.outputs.commit_sha }} test-mode: docker-artifact - test-command: ${{ github.event.pull_request.head.repo.fork == true && 'pnpm --filter=n8n-playwright test:container:sqlite:e2e --grep-invert="@licensed"' || 'pnpm --filter=n8n-playwright test:container:multi-main:e2e' }} + test-command: ${{ github.event.pull_request.head.repo.fork == true && 'pnpm --filter=n8n-playwright test:container:sqlite:e2e --grep-invert=@licensed' || 'pnpm --filter=n8n-playwright test:container:multi-main:e2e' }} workers: '1' pre-generated-matrix: ${{ needs.install-and-build.outputs.matrix }} upload-failure-artifacts: ${{ github.event.pull_request.head.repo.fork == true }}