Skip to content

merge(master): merge alexwrite:feat/invoice-sidebar-stack into master #1

merge(master): merge alexwrite:feat/invoice-sidebar-stack into master

merge(master): merge alexwrite:feat/invoice-sidebar-stack into master #1

name: ClientX CMS Actions
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
jobs:
unit-test:
name: Unit testing
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
env:
MYSQL_DATABASE: testdb
MYSQL_USER: user
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: root
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping --silent"
--health-interval=10s
--health-timeout=5s
--health-retries=5
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: json, zip, sodium, pcntl, bcmath, pdo_mysql
- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('composer.lock') }}
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Wait for MySQL to be ready
run: |
for i in {1..30}; do
if mysqladmin ping -h 127.0.0.1 -u root -proot --silent; then
echo "MySQL is up!"
break
fi
echo "Waiting for MySQL..."
sleep 2
done
# - name: Export translations
# if: github.ref == 'refs/heads/master'
# run: php artisan translations:export
# - name: Checkout ctx-translations repository
# if: github.ref == 'refs/heads/master'
# uses: actions/checkout@v3
# with:
# repository: ${{ vars.CTX_TRANSLATIONS_REPO }}
# ssh-key: ${{ secrets.CTX_TRANSLATIONS_DEPLOY_KEY }}
# ssh-known-hosts: ${{ secrets.CTX_KNOWN_HOSTS }}
# path: translations
# ref: main
# fetch-depth: 0
# - name: Copy translations to translations
# if: github.ref == 'refs/heads/master'
# run: |
# mkdir -p translations/translations
# cp storage/fr.json translations/translations/fr.json
# - name: Commit and push translations
# if: github.ref == 'refs/heads/master'
# run: |
# cd translations
# git config user.name "github-actions[bot]"
# git config user.email "github-actions[bot]@users.noreply.github.com"
# if git diff --quiet; then
# echo "No changes in translations, skipping commit."
# else
# git add translations/fr.json
# git commit -m "Update translations from source repository"
# git push origin main
# fi
- name: Create installed flag
run: mkdir -p storage && touch storage/installed
- name: Set up environment
run: cp .env.testing .env
- name: Generate application key
run: php artisan key:generate
- name: Generate OpenAPI documentation
run: php artisan l5-swagger:generate
- name: Run migrations
run: php artisan migrate --force --no-interaction --no-ansi --seed
- name: Build assets
run: npm install && npm run build
- name: Run translations
run: php artisan translations:import
- name: Run PHPUnit
run: ./vendor/bin/phpunit --configuration phpunit_github.xml -d date.timezone=Europe/Paris