Update dependency vite to v5.4.11 #200
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Recipe Test | |
on: | |
push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
mariadb: | |
image: mariadb:latest | |
env: | |
MARIADB_ROOT_PASSWORD: root_password | |
MARIADB_DATABASE: test_db | |
MARIADB_USER: test_user | |
MARIADB_PASSWORD: test_password | |
options: >- | |
--health-cmd="healthcheck.sh --connect --innodb_initialized" | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
--name mariadb | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Composer install | |
uses: kohlerdominik/docker-run-action@v1 | |
with: | |
image: composer | |
shell: /bin/bash | |
workdir: /app | |
volumes: | |
${{ github.workspace }}:/app | |
run: | | |
composer install --ignore-platform-reqs | |
cp .github/workflows/assets/local.settings.php ./web/sites/default/local.settings.php | |
- name: Drupal install from recipe | |
uses: kohlerdominik/docker-run-action@v1 | |
with: | |
image: bitnami/php-fpm:8.2 | |
shell: /bin/bash | |
workdir: /app | |
volumes: | |
${{ github.workspace }}:/app | |
run: | | |
vendor/bin/drush si recipes/frees-au/ce | |
vendor/bin/drush status |