fix: Magic Link Login can be used even if $allowMagicLinkLogins
is false
#280
Workflow file for this run
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: Language Unit Tests | |
on: | |
pull_request: | |
branches: | |
- develop | |
paths: | |
- 'src/Language/**.php' | |
- '!src/Language/en/**.php' | |
- 'phpunit*' | |
- '.github/workflows/phpunit-lang.yml' | |
push: | |
branches: | |
- develop | |
paths: | |
- 'src/Language/**.php' | |
- '!src/Language/en/**.php' | |
- 'phpunit*' | |
- '.github/workflows/phpunit-lang.yml' | |
jobs: | |
main: | |
name: Language Unit Tests | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
tools: composer, phive, phpunit | |
extensions: intl, json, mbstring, gd, xdebug, xml, sqlite3 | |
coverage: xdebug | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get composer cache directory | |
run: echo "COMPOSER_CACHE_FILES_DIR=$(composer config cache-files-dir)" >> $GITHUB_ENV | |
- name: Cache composer dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.COMPOSER_CACHE_FILES_DIR }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: | | |
if [ -f composer.lock ]; then | |
composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
else | |
composer update --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
fi | |
- name: Test with PHPUnit | |
run: vendor/bin/phpunit --verbose --no-coverage --testsuite lang | |
env: | |
TERM: xterm-256color | |
TACHYCARDIA_MONITOR_GA: enabled |