mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
76 lines
2.2 KiB
YAML
76 lines
2.2 KiB
YAML
name: Cypress Test
|
|
on:
|
|
pull_request:
|
|
branches: [develop]
|
|
push:
|
|
branches: [develop]
|
|
|
|
jobs:
|
|
cypress:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
mysql:
|
|
image: mysql:latest
|
|
env:
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
MYSQL_ROOT_PASSWORD: password
|
|
MYSQL_DATABASE: myaac-tfs-latest
|
|
ports:
|
|
- 3306/tcp
|
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
php-versions: [ '7.4', '8.0', '8.1' ]
|
|
steps:
|
|
- name: Checkout MyAAC
|
|
uses: actions/checkout@v3
|
|
with:
|
|
ref: develop
|
|
|
|
- name: Checkout TFS
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: otland/forgottenserver
|
|
ref: 1.4
|
|
path: tfs
|
|
|
|
- run: ls -lha
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
extensions: mbstring, dom, fileinfo, mysql, json, xml, pdo, pdo_mysql
|
|
|
|
- name: Get composer cache directory
|
|
id: composer-cache
|
|
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache composer dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
# Use composer.json for key, if composer.lock is not committed.
|
|
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
restore-keys: ${{ runner.os }}-composer-
|
|
|
|
- name: Install Composer dependencies
|
|
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
|
|
- name: Run PHP server
|
|
run: nohup php -S localhost:8080 > php.log 2>&1 &
|
|
|
|
- name: Cypress Run
|
|
uses: cypress-io/github-action@v5
|
|
env:
|
|
CYPRESS_URL: http://localhost:8080
|
|
CYPRESS_SERVER_PATH: tfs
|
|
|
|
- name: Save screenshots
|
|
uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: cypress-screenshots
|
|
path: cypress/screenshots
|