mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-21 15:26:58 +01:00
* Check plugins composer.json using CI * Add "require-dev" and "config.allow-plugins" to plugins * fix composer.json format - rm invalid email * fix composer.json format - fix ext require * fix composer.json format - fix plugin name * tmp * Revert "tmp" * fix ext in ext install * disable plugin in plugin install until Roundcube is fully autoloadable * fix composer.json format - fix non-canonical license name * Revert "Add "require-dev" and "config.allow-plugins" to plugins" * no composer install for plugins needed * Revert "fix ext in ext install" * add standard "Test" suffix to phpunit files * rm unneeded "suffix" in phpunit config * simplify phpunit config * fix default "xhtml" doctype in unit testing * fix test_format_date test to not rely on other tests * even more phpunit config simplify * stricter/unify phpunit params for E2E tests * run E2E tests on maximal php version too with lowest deps * "repositories" in bundled plugins are useless as for root package only * add/unify missing plugin test
74 lines
2.0 KiB
YAML
74 lines
2.0 KiB
YAML
name: E2E
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
browser_tests:
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]')"
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
php: ["8.1", "8.3"]
|
|
|
|
name: Linux / PHP ${{ matrix.php }}
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
extensions: dom, curl, fileinfo, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, ldap, intl, pspell
|
|
tools: composer:v2
|
|
coverage: none
|
|
|
|
- name: Set up JDK 1.8
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'zulu'
|
|
java-version: '8'
|
|
|
|
- name: Setup problem matchers
|
|
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
|
|
|
|
- name: Install Aspell
|
|
run: sudo apt-get -y install aspell aspell-en aspell-de
|
|
|
|
- name: Setup composer
|
|
run: |
|
|
composer require "nesbot/carbon:^2.62.1" --no-update
|
|
composer require "laravel/dusk:^7.9" --no-update
|
|
|
|
- name: Install dependencies
|
|
run: composer update --prefer-dist --no-interaction --no-progress
|
|
|
|
- name: Roundcube configuration
|
|
run: cp .github/config-test.inc.php config/config-test.inc.php
|
|
|
|
- name: Setup NPM
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '16'
|
|
|
|
- name: Setup NPM deps
|
|
run: |
|
|
npm install --force -g less
|
|
npm install --force -g less-plugin-clean-css
|
|
npm install --force -g uglify-js
|
|
|
|
- name: Downgrade dependencies (for PHP 8.3 only)
|
|
if: matrix.php == '8.3'
|
|
run: composer update --prefer-dist --prefer-stable --prefer-lowest --no-interaction --no-progress --optimize-autoloader
|
|
|
|
- name: Execute tests
|
|
run: .github/run.sh
|