Skip to content

Commit 976ac5e

Browse files
committed
ci: should also exclude bare templates from e2e tests
1 parent 06e9d46 commit 976ac5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,10 @@ jobs:
167167

168168
- name: Run e2e test script
169169
working-directory: ./playground
170-
run: pnpm --filter '*${{ matrix.e2e-framework }}*' --workspace-concurrency 1 test:e2e
170+
run: pnpm --filter '*${{ matrix.e2e-framework }}*' --filter '!*bare*' --workspace-concurrency 1 test:e2e
171171

172172
- name: Cypress component testing for projects without Vitest
173173
if: ${{ contains(matrix.e2e-framework, 'cypress') }}
174-
run: pnpm --filter '*cypress*' --filter '!*vitest*' --workspace-concurrency 1 test:unit
174+
run: pnpm --filter '*cypress*' --filter '!*vitest*' --filter '!*bare*' --workspace-concurrency 1 test:unit
175175

176176
# FIXME: `--with-tests` folders. It's failing now.

0 commit comments

Comments
 (0)