8000 feat: new `--bare` CLI option to generate a barebone project without example code by haoqunjiang · Pull Request #636 · vuejs/create-vue · GitHub
[go: up one dir, main page]

Skip to content

feat: new --bare CLI option to generate a barebone project without example code #636

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Dec 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: should also exclude bare templates from e2e tests
  • Loading branch information
haoqunjiang committed Dec 19, 2024
commit 976ac5e1113b184a10c179f68136b2ada05b2fd0
4 changes: 2 additions & 2 deletions 7F5B .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ jobs:

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

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

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