diff --git a/.github/workflows/php_build_and_qa_test.yml b/.github/workflows/php_build_and_qa_test.yml index 2cecac4..b1ac54b 100644 --- a/.github/workflows/php_build_and_qa_test.yml +++ b/.github/workflows/php_build_and_qa_test.yml @@ -95,5 +95,5 @@ jobs: npm run build-only ## —— Testing ———————————————————————————————————————————————————————————— -# - name: Execute tests (Unit & Integration Tests) via PestPHP +# - name: Execute tests (Unit & Feature Tests) via PestPHP # run: ./vendor/bin/pest diff --git a/frontends/member_module/.env.development b/frontends/member_module/.env.development index 76a45ea..9506e47 100644 --- a/frontends/member_module/.env.development +++ b/frontends/member_module/.env.development @@ -1,2 +1,2 @@ VITE_API_URL=http://localhost.charlesproxy.com:8080/mm/api -VITE_VERSION=0.9.0 +VITE_VERSION=0.0.1 diff --git a/frontends/member_module/.env.production b/frontends/member_module/.env.production index 3320f62..8800d20 100644 --- a/frontends/member_module/.env.production +++ b/frontends/member_module/.env.production @@ -1,2 +1,2 @@ VITE_API_URL=/mm/api -VITE_VERSION=0.9.0 +VITE_VERSION=0.0.1 diff --git a/package.json b/package.json index c745906..e292d0e 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,9 @@ "dev": "encore dev", "watch": "encore dev --watch", "build": "encore production --progress", - "cypress": "cypress open" + "cypress": "cypress open", + "build-admin": "rm -rf public/mm_module/assets/ && cd frontends/member_module && npm run build-only", + "build-all": "yarn build && yarn build-admin" }, "dependencies": { "@oruga-ui/oruga-next": "^0.5.9",