Skip to content

fix: focus article view when item selected via keyboard navigation #3841

fix: focus article view when item selected via keyboard navigation

fix: focus article view when item selected via keyboard navigation #3841

Workflow file for this run

name: PHP Tests
on:
pull_request
permissions: {}
jobs:
php:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
name: "PHP: Nextcloud ${{ matrix.nextcloud }} - PHP ${{ matrix.php-versions }} - DB ${{ matrix.database }}"
permissions:
contents: read
strategy:
matrix:
php-versions: ['8.3']
nextcloud: ['stable34']
database: ['sqlite']
experimental: [false]
include:
- php-versions: 8.3
nextcloud: stable34
database: sqlite
experimental: false
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 2 # https://github.com/codecov/codecov-action/issues/190#issuecomment-790729633
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@7c071dfe9dc99bdf297fa79cb49ea005b9fcadbc # 2.37.1
with:
php-version: ${{ matrix.php-versions }}
extensions: pdo_sqlite,pdo_mysql,pdo_pgsql,gd,zip
coverage: pcov
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
### Back to normal setup
- name: Set up server non MySQL
uses: SMillerDev/nextcloud-actions/setup-nextcloud@b13a04eb6a4e48972d31fa07559619843fcc2102 # main
with:
cron: true
version: ${{ matrix.nextcloud }}
database-type: ${{ matrix.database }}
- name: Prime app build
run: make
- name: Configure server with app
uses: SMillerDev/nextcloud-actions/setup-nextcloud-app@b13a04eb6a4e48972d31fa07559619843fcc2102 # main
with:
app: 'news'
check-code: false
- name: Prep PHP tests
working-directory: ../server/apps/news
run: make php-test-dependencies
- name: Unittests
working-directory: ../server/apps/news
run: make unit-test