We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f444042 commit a3181aeCopy full SHA for a3181ae
.github/workflows/docker-build.yml
@@ -16,6 +16,22 @@ jobs:
16
- name: Checkout code
17
uses: actions/checkout@v4
18
19
+ - name: Setup PHP
20
+ uses: shivammathur/setup-php@v2
21
+ with:
22
+ php-version: '8.4'
23
+
24
+ - name: Install Composer dependencies
25
+ run:
26
+ - cd backend
27
+ - composer install --no-interaction --no-progress --no-suggest --no-dev
28
29
+ - name: Build Frontend
30
+ run: |
31
+ cd frontend
32
+ npm install
33
+ npm run build
34
35
- name: Set up Docker Buildx
36
uses: docker/setup-buildx-action@v3
37
0 commit comments