Skip to content

ci(e2e): disable fallback mode by default #1701

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 3 commits into from
Oct 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/e2e-vue-cli-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:

echo '{"useTaobaoRegistry": false}' | tee ~/.vuerc

yarn dlx @vue/cli create -d my-vue && cd my-vue
yarn build
YARN_PNP_FALLBACK_MODE="dependencies-only" yarn dlx @vue/cli create -d my-vue && cd my-vue
YARN_PNP_FALLBACK_MODE="dependencies-only" yarn build
3 changes: 3 additions & 0 deletions scripts/e2e-setup-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ export YARN_ENABLE_INLINE_BUILDS=1
# We want to allow installs to modify the lockfile
export YARN_ENABLE_IMMUTABLE_INSTALLS=0

# We want to make sure the projects work in a monorepo
export YARN_PNP_FALLBACK_MODE=none

# Otherwise git commit doesn't work, and some tools require it
git config --global user.email "you@example.com"
git config --global user.name "John Doe"
Expand Down