-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (60 loc) · 1.82 KB
/
ci.yml
File metadata and controls
75 lines (60 loc) · 1.82 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
test:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ["8.4"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, xml, sqlite3, dom, curl
coverage: none
- name: Cache Composer dependencies
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ matrix.php }}-${{ hashFiles('composer.lock') }}
restore-keys: composer-${{ matrix.php }}-
- name: Install Composer dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Setup Node 22
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Cache npm dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install npm dependencies
run: npm ci
- name: Build frontend
run: npx vite build
- name: Configure environment
run: |
cp .env.example .env
php artisan key:generate
# Override Redis-dependent drivers for CI (no Redis available)
echo "CACHE_DRIVER=array" >> .env
echo "SESSION_DRIVER=array" >> .env
echo "QUEUE_CONNECTION=sync" >> .env
echo "SCOUT_DRIVER=null" >> .env
- name: Create SQLite database
run: touch database/database.sqlite
- name: Run migrations
run: php artisan migrate --force
- name: Run tests
run: php artisan test