-
-
Notifications
You must be signed in to change notification settings - Fork 4
84 lines (70 loc) · 2.19 KB
/
pest-tests.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
name: Pest Tests
on:
workflow_call:
workflow_dispatch:
jobs:
phpunit:
runs-on: ubuntu-latest
container:
image: kirschbaumdevelopment/laravel-test-runner:8.3
services:
postgres:
image: postgres:15.1
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: vanguard
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
redis:
image: redis:6.2
ports:
- 6379:6379
options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Cache Composer packages
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install composer dependencies
run: composer install --no-scripts
- name: Prepare Laravel Application
run: |
cp .env.example.ci .env
php artisan key:generate
php artisan vanguard:generate-ssh-key
- name: Cache Laravel application
uses: actions/cache@v4
with:
path: bootstrap/cache
key: ${{ runner.os }}-laravel-${{ github.sha }}
restore-keys: ${{ runner.os }}-laravel-
- name: Cache NPM packages
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: ${{ runner.os }}-node-
- name: Install npm dependencies
run: npm install
- name: Build assets
run: npm run build
- name: Cache built assets
uses: actions/cache@v4
with:
path: public/build
key: ${{ runner.os }}-assets-${{ github.sha }}
restore-keys: ${{ runner.os }}-assets-
- name: Clear caches
run: |
php artisan config:clear
php artisan cache:clear
php artisan view:clear
- name: Run Tests
run: vendor/bin/pest