mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-16 11:00:08 +00:00
9af8052328
Needed as the action will fail if GitHub CI pushed before composer
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
name: Composer
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Validate composer.json and composer.lock
|
|
run: composer validate
|
|
|
|
- name: Install dependencies
|
|
run: composer install --prefer-dist --no-progress --no-suggest
|
|
|
|
# Bypass the phpcbf non-standard exit code
|
|
- name: Run phpcbf
|
|
run: |
|
|
sh ./bin/phpcbf.sh
|
|
composer fix
|
|
|
|
- name: Run parallel-lint, phpcs, minus-x
|
|
run: composer test
|
|
|
|
# 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: |
|
|
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 add .
|
|
git commit -am "Github CI lint - phpcbf" || echo "No changes to commit"
|
|
git pull
|
|
git push
|
|
|
|
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
|
|
# Docs: https://getcomposer.org/doc/articles/scripts.md
|
|
|
|
# - name: Run test suite
|
|
# run: composer run-script test
|