Add GitHub Actions workflow for code checks #1
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: Build, Lint, and Check PHP/JS | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16.10.0 | |
- name: Install Node.js dependencies | |
run: npm install | |
working-directory: ./Website/ui | |
- name: Run ESLint for JavaScript files | |
run: npx eslint ./src/**/*.js | |
working-directory: ./Website/ui | |
- name: Run ESLint for Vue files | |
run: npx eslint ./src/**/*.vue | |
working-directory: ./Website/ui | |
- name: Build npm on production mode | |
run: npm run production | |
working-directory: ./Website/ui | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
- name: Install PHP dependencies | |
run: composer install --no-scripts --no-progress --prefer-dist | |
working-directory: ./Website/htdocs/mpmanager | |
- name: Run PHP Code Beautifier and Fixer (phpcbf) | |
run: ./vendor/bin/phpcbf --standard=PSR12 --tab-width=4 app/ | |
working-directory: ./Website/htdocs/mpmanager | |
- name: Check for PHP changes | |
run: | | |
git diff --exit-code || { echo "PHP code style checks failed. Please run 'phpcbf' locally to fix the issues."; exit 1; } | |