-
-
Notifications
You must be signed in to change notification settings - Fork 5
56 lines (43 loc) · 1.42 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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; }