Update README for version 2.2.0 changes #903
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| name: "PHPUnit: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" | |
| strategy: | |
| matrix: | |
| include: | |
| - mw: 'REL1_43' | |
| php: '8.1' | |
| - mw: 'REL1_43' | |
| php: '8.2' | |
| - mw: 'REL1_43' | |
| php: '8.3' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: mediawiki | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, intl | |
| tools: composer | |
| - name: Cache MediaWiki | |
| id: cache-mediawiki | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| mediawiki | |
| !mediawiki/extensions/ | |
| !mediawiki/vendor/ | |
| key: mw_${{ matrix.mw }}-php${{ matrix.php }}_v4 | |
| - name: Cache Composer cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache | |
| key: composer-php${{ matrix.php }} | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: EarlyCopy | |
| - name: Install MediaWiki | |
| if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
| working-directory: ~ | |
| run: bash EarlyCopy/.github/workflows/installMediaWiki.sh ${{ matrix.mw }} PageApprovals | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: mediawiki/extensions/PageApprovals | |
| - run: composer update | |
| - name: Run update.php | |
| run: php maintenance/update.php --quick | |
| - name: Run PHPUnit | |
| run: php tests/phpunit/phpunit.php -c extensions/PageApprovals/ | |
| PHPStan: | |
| name: "PHPStan: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" | |
| strategy: | |
| matrix: | |
| include: | |
| - mw: 'REL1_43' | |
| php: '8.2' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: mediawiki | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring | |
| tools: composer, cs2pr | |
| - name: Cache MediaWiki | |
| id: cache-mediawiki | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| mediawiki | |
| mediawiki/extensions/ | |
| mediawiki/vendor/ | |
| key: mw_${{ matrix.mw }}-php${{ matrix.php }}_v3 | |
| - name: Cache Composer cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache | |
| key: composer_static_analysis | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: EarlyCopy | |
| - name: Install MediaWiki | |
| if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
| working-directory: ~ | |
| run: bash EarlyCopy/.github/workflows/installMediaWiki.sh ${{ matrix.mw }} PageApprovals | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: mediawiki/extensions/PageApprovals | |
| - name: Composer allow-plugins | |
| run: composer config --no-plugins allow-plugins.composer/installers true | |
| - run: composer update | |
| - name: Composer install | |
| run: cd extensions/PageApprovals && composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
| - name: PHPStan | |
| run: cd extensions/PageApprovals && php vendor/bin/phpstan analyse --error-format=checkstyle --no-progress | cs2pr | |
| Psalm: | |
| name: "Psalm: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" | |
| strategy: | |
| matrix: | |
| include: | |
| - mw: 'REL1_43' | |
| php: '8.2' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: mediawiki | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring | |
| tools: composer, cs2pr | |
| - name: Cache MediaWiki | |
| id: cache-mediawiki | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| mediawiki | |
| mediawiki/extensions/ | |
| mediawiki/vendor/ | |
| key: mw_${{ matrix.mw }}-php${{ matrix.php }}_v3 | |
| - name: Cache Composer cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache | |
| key: composer_static_analysis | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: EarlyCopy | |
| - name: Install MediaWiki | |
| if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
| working-directory: ~ | |
| run: bash EarlyCopy/.github/workflows/installMediaWiki.sh ${{ matrix.mw }} PageApprovals | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: mediawiki/extensions/PageApprovals | |
| - name: Composer allow-plugins | |
| run: composer config --no-plugins allow-plugins.composer/installers true | |
| - run: composer update | |
| - name: Composer install | |
| run: cd extensions/PageApprovals && composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
| - name: Psalm | |
| run: cd extensions/PageApprovals && pwd && php vendor/bin/psalm --config=psalm.xml --shepherd --stats | |
| code-style: | |
| name: "Code style: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" | |
| strategy: | |
| matrix: | |
| include: | |
| - mw: 'REL1_43' | |
| php: '8.2' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: mediawiki/extensions/PageApprovals | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, intl, php-ast | |
| tools: composer | |
| - name: Cache MediaWiki | |
| id: cache-mediawiki | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| mediawiki | |
| !mediawiki/extensions/ | |
| !mediawiki/vendor/ | |
| key: mw_static_analysis | |
| - name: Cache Composer cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache | |
| key: mw_${{ matrix.mw }}-php${{ matrix.php }}_v3 | |
| - name: Install MediaWiki | |
| if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
| working-directory: ~ | |
| run: curl https://gist.githubusercontent.com/JeroenDeDauw/49a3858653ff4b5be7ec849019ede06c/raw/installMediaWiki.sh | bash -s ${{ matrix.mw }} PageApprovals | |
| - uses: actions/checkout@v4 | |
| with: | |
| path: mediawiki/extensions/PageApprovals | |
| - name: Composer install | |
| run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
| - run: vendor/bin/phpcs -p -s | |
| linting: | |
| name: "JS & CSS Linting" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - run: npm ci | |
| - run: npm run lint |