-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (36 loc) · 1.14 KB
/
pull-request-checks.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
name: Pull Request Checks
on:
pull_request:
branches:
- main
jobs:
code-standards-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite
tools: composer:v2
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install NPM Dependencies
run: npm install
- name: Generate Application Key
run: php artisan key:generate
- name: Directory Permissions
run: chmod -R 777 storage bootstrap/cache
- name: Prepare Directory Permissions
run: |
mkdir -p public/build
chmod -R 755 public/build
- name: Run Pre-Commit Checks
run: php artisan dev:check