diff --git a/.github/workflows/e2e-svelte-kit-workflow.yml b/.github/workflows/e2e-svelte-kit-workflow.yml index f36049f5e99f..d95474a6f015 100644 --- a/.github/workflows/e2e-svelte-kit-workflow.yml +++ b/.github/workflows/e2e-svelte-kit-workflow.yml @@ -23,7 +23,25 @@ jobs: - name: 'Running the integration test' run: | - source scripts/e2e-setup-ci.sh - yes | yarn create svelte@next my-app && cd my-app + # TODO: Modify if the create-svelte command allows arguments. + yarn init -p + yarn add create-svelte + + cat > create-svelte.mjs << EOF + import('create-svelte').then(module => { + module.create('.', { + name: '.', + template: 'default', // or 'skeleton' or 'skeletonlib' + types: 'checkjs', // or 'typescript' or null; + prettier: false, + eslint: false, + playwright: false, + vitest: false + }) + }) + EOF + + yarn node create-svelte.mjs + yarn yarn build