Skip to content

Commit

Permalink
Bulid member module application.
Browse files Browse the repository at this point in the history
  • Loading branch information
koencaerels committed Jan 16, 2024
1 parent 857b6ea commit 820d6c2
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/php_build_and_qa_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:

- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.test', '.env');"

## —— Composer ———————————————————————————————————————————————————————————

- name: Validate composer.json and composer.lock
run: composer validate --strict
Expand All @@ -41,6 +43,8 @@ jobs:
- name: Install dependencies
run: composer install --prefer-dist --no-progress

## —— Database & cache ——————————————————————————————————————————————————

- name: Create Database
run: |
Expand Down Expand Up @@ -81,6 +85,14 @@ jobs:

- name: Yarn build
run: yarn run encore production

## —— Frontend MemberModule ——————————————————————————————————————————

- name: Build Member Module Application
run: |
cd frontends/member_module/
npm install
npm run build-only
## —— Testing ————————————————————————————————————————————————————————————
# - name: Execute tests (Unit & Integration Tests) via PestPHP
Expand Down

0 comments on commit 820d6c2

Please sign in to comment.