chore: Fix scripts in CLI pipeline (#13402)

* chore: Fix scripts in CLI pipeline

* Create curly-lizards-dress.md
This commit is contained in:
Oli Juhl
2025-09-03 14:07:24 +02:00
committed by GitHub
parent a2dabea6c4
commit 115a1deb49
3 changed files with 11 additions and 6 deletions

View File

@@ -59,7 +59,7 @@ jobs:
- name: Create Medusa project
working-directory: ..
run: |
medusa new cli-test --skip-db --v2 --branch ci-custom
medusa new cli-test --skip-db --skip-migrations --v2 --branch ci-custom
- name: Enable Corepack
run: corepack enable
@@ -71,22 +71,22 @@ jobs:
working-directory: ../cli-test
- name: Run migrations
run: yarn medusa db:migrate
run: npx medusa db:migrate
working-directory: ../cli-test
- name: Create admin user
run: yarn medusa user -e test@test.com -p password -i admin_123
run: npx medusa user -e test@test.com -p password -i admin_123
working-directory: ../cli-test
- name: Run development server
run: yarn medusa develop &
run: npx medusa develop &
working-directory: ../cli-test
- name: Testing development server
uses: ./.github/actions/test-server
- name: Starting medusa
run: yarn medusa start &
run: npx medusa start &
working-directory: ../cli-test
- name: Testing server