Fix user listing preload scope #12852
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: Lint | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
APP_ENV: testing | |
jobs: | |
lint: | |
name: Lint all | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
node-version: '20' | |
- name: Set php version | |
uses: shivammathur/setup-php@v2 | |
with: | |
tools: composer:v2, cs2pr | |
php-version: '8.3' | |
coverage: none | |
- name: Get composer cache directory | |
id: composercache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache composer | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composercache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install Composer dependencies | |
run: >- | |
composer config -g github-oauth.github.com ${{ secrets.GITHUB_TOKEN }} | |
&& composer install --prefer-dist --no-progress | |
- name: Install js dependencies | |
run: yarn --frozen-lockfile | |
- run: 'yarn lint --max-warnings 87 > /dev/null' | |
- run: yarn pretty | |
- run: ./bin/update_licence.sh -nf | |
- name: Run PHPCS | |
run: ./vendor/bin/phpcs --report=checkstyle --basepath="$PWD" -q | cs2pr |