mediawiki-skins-Citizen/.github/workflows/mediawiki.yml

65 lines
1.7 KiB
YAML
Raw Normal View History

name: MediaWiki CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
2021-01-06 23:51:13 +00:00
name: Test and lint
runs-on: ubuntu-latest
2021-01-06 00:24:52 +00:00
strategy:
matrix:
php-versions: ['7.4']
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
composer validate
npm install --save-dev
2021-01-06 00:40:58 +00:00
composer install --prefer-dist --no-progress
# Bypass the phpcbf non-standard exit code
- name: Check PHP
run: |
sh ./bin/phpcbf.sh
composer fix
composer test
- name: Check Javascript
run: |
npm run lint:fix:js
npm run lint:js
- name: Check CSS/LESS
run: |
npm run lint:fix:styles
npm run lint:styles
- name: Check i18n
run: |
npm run lint:i18n
# Only patch code when it is a push event
- name: Push the changes
if: github.event_name == 'push'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if ! git diff --exit-code --quiet; then
git config --global user.name "github-actions"
git config --global user.email "github-actions@users.noreply.github.com"
git remote set-url origin "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
git checkout -b ${GITHUB_HEAD_REF}
git add .
git commit -am "ci: lint code to MediaWiki standards" -m "Check commit and GitHub actions for more details"
git pull origin ${GITHUB_HEAD_REF} --rebase
git push --set-upstream origin ${GITHUB_HEAD_REF}
else
echo "No changes to commit"
fi